diff --git a/pyproject.toml b/pyproject.toml index 56d90f9..ab7bb0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "Enabler" # noqa -version = "0.1" # noqa +name = "enabler_keitaro_inc" # noqa +version = "0.1.0" # noqa description = "Enabler is a CLI application built for making life easier when working on microservice-based applications. Through this package we can create, edit and execute custom commands to configure microservices." # noqa authors = ["Your Name "] # noqa diff --git a/setup.py b/setup.py index c9c6466..b408197 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ from setuptools import setup + setup( name="enabler", - version="0.1", + version="0.1.0", packages=["enabler", "src.enabler_keitaro_inc.commands", "src.enabler_keitaro_inc.helpers"], # noqa include_package_data=True, install_requires=["click==7.1.1", diff --git a/tests/version_unittests.py b/tests/version_unittests.py index f717490..eb305e9 100644 --- a/tests/version_unittests.py +++ b/tests/version_unittests.py @@ -9,7 +9,7 @@ def setUp(self): @patch('src.enabler_keitaro_inc.enabler.subprocess.run') def test_version_command(self, mock_subprocess_run): - mock_subprocess_run.return_value.stdout = 'Enabler 0.1' + mock_subprocess_run.return_value.stdout = 'Enabler 0.1.0' version = self.cli.version_command() - expected_version = 'Enabler 0.1' + expected_version = 'Enabler 0.1.0' self.assertEqual(version, expected_version)