├── .github ├── dependabot.yml └── workflows │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt ├── src └── bulletproof_python │ ├── __init__.py │ └── main.py ├── tests ├── __init__.py └── test_main.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/bulletproof_python/__init__.py: -------------------------------------------------------------------------------- 1 | """A magic-free, understandable python project template.""" 2 | -------------------------------------------------------------------------------- /src/bulletproof_python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/src/bulletproof_python/main.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit and integration tests.""" 2 | -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamwil/bulletproof-python/HEAD/tox.ini --------------------------------------------------------------------------------