diff --git a/pyproject.toml b/pyproject.toml index 68b629b..0e3e248 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "data-file-merge" -version = "0.1.0" +name = "dfm" +version = "0.3.0" description = "" authors = ["ServerlessSam"] diff --git a/setup.py b/setup.py index 7f34957..19e01d0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,8 @@ from pathlib import Path from setuptools import find_packages, setup -from src.version import __version__ + +from src.dfm.version import __version__ this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()