├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── pages.yml ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE.txt ├── README.md ├── docs ├── index.md ├── licenses │ ├── license_files.txt │ ├── license_report.md │ └── summary.txt └── static │ ├── images │ ├── nox_run_configuration.png │ └── preferences.png │ ├── math-integral-box.png │ └── stylesheets │ └── extra.css ├── mkdocs.yml ├── noxfile.py ├── pyproject.toml ├── src └── fact │ ├── __init__.py │ ├── cli.py │ ├── lib.py │ └── py.typed ├── tests ├── __init__.py ├── test_cli.py └── test_lib.py └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/licenses/license_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/licenses/license_files.txt -------------------------------------------------------------------------------- /docs/licenses/license_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/licenses/license_report.md -------------------------------------------------------------------------------- /docs/licenses/summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/licenses/summary.txt -------------------------------------------------------------------------------- /docs/static/images/nox_run_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/static/images/nox_run_configuration.png -------------------------------------------------------------------------------- /docs/static/images/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/static/images/preferences.png -------------------------------------------------------------------------------- /docs/static/math-integral-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/static/math-integral-box.png -------------------------------------------------------------------------------- /docs/static/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/docs/static/stylesheets/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/fact/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fact/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/src/fact/cli.py -------------------------------------------------------------------------------- /src/fact/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/src/fact/lib.py -------------------------------------------------------------------------------- /src/fact/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/src/fact/py.typed -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/tests/test_lib.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/python-blueprint/HEAD/uv.lock --------------------------------------------------------------------------------