├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── pyproject.toml ├── src └── hatch_pip_deepfreeze │ ├── __init__.py │ ├── hooks.py │ └── plugin.py └── tests ├── __init__.py └── test_dummy.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/hatch_pip_deepfreeze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/src/hatch_pip_deepfreeze/__init__.py -------------------------------------------------------------------------------- /src/hatch_pip_deepfreeze/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/src/hatch_pip_deepfreeze/hooks.py -------------------------------------------------------------------------------- /src/hatch_pip_deepfreeze/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/src/hatch_pip_deepfreeze/plugin.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/hatch-pip-deepfreeze/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_dummy.py: -------------------------------------------------------------------------------- 1 | def test_dummy(): 2 | ... 3 | --------------------------------------------------------------------------------