├── .dockerignore ├── .env.example ├── .github ├── dependabot.yml └── workflows │ ├── pre-commit.yaml │ ├── test-deploy.yaml │ └── uni_tests.yaml ├── .gitignore ├── .gitlab-ci.yml ├── .nvmrc ├── .pre-commit-config.yaml ├── .python-version ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── assets ├── commit-template.txt ├── icon.svg └── img.png ├── data └── data.txt ├── docker └── Dockerfile ├── mkdocs.yml ├── notebook.ipynb ├── output.pdf ├── package.json ├── pyproject.toml ├── scripts └── gen_doc_stubs.py ├── src └── python_package_template │ ├── __init__.py │ ├── example.py │ └── utils.py ├── tests └── test_example.py └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | DEV_MODE=true 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/test-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.github/workflows/test-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/uni_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.github/workflows/uni_tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.8.0 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/README.md -------------------------------------------------------------------------------- /assets/commit-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/assets/commit-template.txt -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/assets/img.png -------------------------------------------------------------------------------- /data/data.txt: -------------------------------------------------------------------------------- 1 | Put your data here 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/notebook.ipynb -------------------------------------------------------------------------------- /output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/output.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/gen_doc_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/scripts/gen_doc_stubs.py -------------------------------------------------------------------------------- /src/python_package_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python_package_template/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/src/python_package_template/example.py -------------------------------------------------------------------------------- /src/python_package_template/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/src/python_package_template/utils.py -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- 1 | def test_example(): 2 | assert True 3 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmineDjeghri/python-package-template/HEAD/uv.lock --------------------------------------------------------------------------------