diff --git a/tests/__init__.py b/package/tests/__init__.py similarity index 100% rename from tests/__init__.py rename to package/tests/__init__.py diff --git a/tests/conftest.py b/package/tests/conftest.py similarity index 100% rename from tests/conftest.py rename to package/tests/conftest.py diff --git a/tests/test_module.py b/package/tests/test_module.py similarity index 100% rename from tests/test_module.py rename to package/tests/test_module.py diff --git a/setup.py b/setup.py index 30e380f..a30d473 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ entry_points = { # see https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html#the-console-scripts-entry-point 'console_scripts': [ - 'run-script=package.scripts.script:run' # rename the command and the patch to the function + 'run-script=package.scripts.script:run' # rename the command and the path to the function ] } )