├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── HISTORY.md ├── LICENSE.txt ├── README.md ├── hatch.toml ├── hatch_conda ├── __about__.py ├── __init__.py ├── hooks.py └── plugin.py ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── test_config.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/README.md -------------------------------------------------------------------------------- /hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/hatch.toml -------------------------------------------------------------------------------- /hatch_conda/__about__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.2" 2 | -------------------------------------------------------------------------------- /hatch_conda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hatch_conda/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/hatch_conda/hooks.py -------------------------------------------------------------------------------- /hatch_conda/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/hatch_conda/plugin.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OldGrumpyViking/hatch-conda/HEAD/tests/utils.py --------------------------------------------------------------------------------