├── .github └── workflows │ ├── cibuildwheel.yml │ ├── publish_pypi.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── push-tags.sh ├── confection ├── __init__.py ├── _config.py ├── _errors.py ├── _registry.py ├── py.typed ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_config.py │ ├── test_frozen_structures.py │ ├── test_registry.py │ └── util.py └── util.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/cibuildwheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/.github/workflows/cibuildwheel.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/README.md -------------------------------------------------------------------------------- /bin/push-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/bin/push-tags.sh -------------------------------------------------------------------------------- /confection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/__init__.py -------------------------------------------------------------------------------- /confection/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/_config.py -------------------------------------------------------------------------------- /confection/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/_errors.py -------------------------------------------------------------------------------- /confection/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/_registry.py -------------------------------------------------------------------------------- /confection/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /confection/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /confection/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/tests/conftest.py -------------------------------------------------------------------------------- /confection/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/tests/test_config.py -------------------------------------------------------------------------------- /confection/tests/test_frozen_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/tests/test_frozen_structures.py -------------------------------------------------------------------------------- /confection/tests/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/tests/test_registry.py -------------------------------------------------------------------------------- /confection/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/tests/util.py -------------------------------------------------------------------------------- /confection/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/confection/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/confection/HEAD/setup.py --------------------------------------------------------------------------------