├── .copier-answers.yml ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── issue-form.yml └── workflows │ ├── check.yml │ └── release.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── dev.py ├── pyproject.toml ├── src └── hatch_build_scripts │ ├── __init__.py │ ├── hooks.py │ ├── plugin.py │ └── py.typed ├── tests ├── __init__.py ├── test_plugin.py └── utils.py └── uv.lock /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/.github/ISSUE_TEMPLATE/issue-form.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/README.md -------------------------------------------------------------------------------- /dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/dev.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/hatch_build_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/src/hatch_build_scripts/__init__.py -------------------------------------------------------------------------------- /src/hatch_build_scripts/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/src/hatch_build_scripts/hooks.py -------------------------------------------------------------------------------- /src/hatch_build_scripts/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/src/hatch_build_scripts/plugin.py -------------------------------------------------------------------------------- /src/hatch_build_scripts/py.typed: -------------------------------------------------------------------------------- 1 | PEP-561 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/tests/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmorshea/hatch-build-scripts/HEAD/uv.lock --------------------------------------------------------------------------------