diff --git a/horusdemodlib/__init__.py b/horusdemodlib/__init__.py index 3dc1f76..485f44a 100755 --- a/horusdemodlib/__init__.py +++ b/horusdemodlib/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index 2c16546..c28167f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "horusdemodlib" -version = "0.1.0" +version = "0.1.1" description = "Project Horus HAB Telemetry Demodulators" authors = ["Mark Jessop"] license = "LGPL-2.1-or-later" diff --git a/setup.py b/setup.py index 112d77b..5776d91 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages regexp = re.compile(r".*__version__ = [\'\"](.*?)[\'\"]", re.S) -init_file = os.path.join(os.path.dirname(__file__), "src", "horusdemodlib", "__init__.py") +init_file = os.path.join(os.path.dirname(__file__), "horusdemodlib", "__init__.py") with open(init_file, "r") as f: module_content = f.read() match = regexp.match(module_content) @@ -34,8 +34,8 @@ if __name__ == "__main__": version=version, install_requires=requirements, keywords=["horus modem telemetry radio"], - package_dir={"": "src"}, - packages=find_packages("src"), + package_dir={"": "."}, + packages=find_packages("."), classifiers=[ "Intended Audience :: Developers", "Programming Language :: Python :: 3.6",