diff --git a/{{cookiecutter.project_name}}/src/{{cookiecutter.project_slug}}/__init__.py b/{{cookiecutter.project_name}}/src/{{cookiecutter.project_slug}}/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/{{cookiecutter.project_name}}/tests/conftest.py b/{{cookiecutter.project_name}}/tests/conftest.py new file mode 100644 index 0000000..d155eee --- /dev/null +++ b/{{cookiecutter.project_name}}/tests/conftest.py @@ -0,0 +1,5 @@ +import os +import sys + +# Add the project root directory to Python path +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))