├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── HISTORY.md ├── LICENSE.txt ├── README.md ├── hatch.toml ├── pyproject.toml ├── src └── hatch_showcase │ ├── __init__.py │ ├── __main__.py │ ├── cli │ └── __init__.py │ └── fib.py └── tests ├── __init__.py ├── conftest.py ├── test_cli.py └── test_fib.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/README.md -------------------------------------------------------------------------------- /hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/hatch.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/hatch_showcase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/src/hatch_showcase/__init__.py -------------------------------------------------------------------------------- /src/hatch_showcase/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/src/hatch_showcase/__main__.py -------------------------------------------------------------------------------- /src/hatch_showcase/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/src/hatch_showcase/cli/__init__.py -------------------------------------------------------------------------------- /src/hatch_showcase/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/src/hatch_showcase/fib.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/hatch-showcase/HEAD/tests/test_fib.py --------------------------------------------------------------------------------