├── .github └── workflows │ ├── build.yaml │ ├── coverage.yaml │ ├── ruff.yaml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── COVERAGE.md ├── LICENSE.txt ├── README.md ├── cliff.toml ├── pyproject.toml ├── src └── hatch_cython │ ├── __about__.py │ ├── __init__.py │ ├── config │ ├── __init__.py │ ├── autoimport.py │ ├── config.py │ ├── defaults.py │ ├── files.py │ ├── flags.py │ ├── includes.py │ ├── macros.py │ ├── platform.py │ └── templates.py │ ├── constants.py │ ├── devel.py │ ├── hooks.py │ ├── plugin.py │ ├── temp.py │ ├── types.py │ └── utils.py ├── taskfile.yaml ├── test_libraries ├── bootstrap.py ├── only_included │ ├── LICENSE.txt │ ├── hatch.toml │ ├── pyproject.toml │ ├── src │ │ └── example_only_included │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── compile.py │ │ │ ├── did.pyi │ │ │ └── dont_compile.py │ └── tests │ │ ├── __init__.py │ │ ├── test_compiled.py │ │ └── test_didnt.py ├── simple_structure │ ├── .gitignore │ ├── LICENSE.txt │ ├── example_lib │ │ └── .gitkeep │ ├── hatch.toml │ ├── pyproject.toml │ └── tests │ │ └── .gitkeep └── src_structure │ ├── .gitignore │ ├── LICENSE.txt │ ├── hatch.toml │ ├── include │ ├── .gitkeep │ └── something.cc │ ├── pyproject.toml │ ├── scripts │ ├── .gitkeep │ └── custom_include.py │ ├── src │ └── example_lib │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _alias.pyx │ │ ├── custom_includes.pyi │ │ ├── custom_includes.pyx │ │ ├── mod_a │ │ ├── __init__.py │ │ ├── adds.pyi │ │ ├── adds.pyx │ │ ├── deep_nest │ │ │ └── creates.pyx │ │ ├── some_defn.pxd │ │ └── some_defn.py │ │ ├── no_compile │ │ └── abc.py │ │ ├── normal.py │ │ ├── platform │ │ ├── darwin.pyx │ │ ├── freebsd.pyx │ │ ├── linux.pyx │ │ └── windows.pyx │ │ ├── templated.pyi.in │ │ ├── templated.pyx.in │ │ ├── templated_maxosx_sample.pyi │ │ ├── templated_maxosx_sample.pyx │ │ ├── test.pyi │ │ └── test.pyx │ └── tests │ ├── __init__.py │ ├── test_aliased.py │ ├── test_custom_includes.py │ ├── test_example.py │ ├── test_normal.py │ ├── test_platform.py │ ├── test_submodule.py │ └── test_templated.py └── tests ├── __init__.py ├── test_config.py ├── test_files.py ├── test_includes.py ├── test_macros.py ├── test_platform.py ├── test_platform_pyversion.py ├── test_plugin.py ├── test_plugin_excludes.py ├── test_setuppy.py ├── test_templates.py ├── test_utils.py ├── test_xenv_merge.py └── utils.py /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/.github/workflows/coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/ruff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/.github/workflows/ruff.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COVERAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/COVERAGE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/README.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/cliff.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/hatch_cython/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/__about__.py -------------------------------------------------------------------------------- /src/hatch_cython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/__init__.py -------------------------------------------------------------------------------- /src/hatch_cython/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/__init__.py -------------------------------------------------------------------------------- /src/hatch_cython/config/autoimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/autoimport.py -------------------------------------------------------------------------------- /src/hatch_cython/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/config.py -------------------------------------------------------------------------------- /src/hatch_cython/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/defaults.py -------------------------------------------------------------------------------- /src/hatch_cython/config/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/files.py -------------------------------------------------------------------------------- /src/hatch_cython/config/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/flags.py -------------------------------------------------------------------------------- /src/hatch_cython/config/includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/includes.py -------------------------------------------------------------------------------- /src/hatch_cython/config/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/macros.py -------------------------------------------------------------------------------- /src/hatch_cython/config/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/platform.py -------------------------------------------------------------------------------- /src/hatch_cython/config/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/config/templates.py -------------------------------------------------------------------------------- /src/hatch_cython/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/constants.py -------------------------------------------------------------------------------- /src/hatch_cython/devel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/devel.py -------------------------------------------------------------------------------- /src/hatch_cython/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/hooks.py -------------------------------------------------------------------------------- /src/hatch_cython/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/plugin.py -------------------------------------------------------------------------------- /src/hatch_cython/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/temp.py -------------------------------------------------------------------------------- /src/hatch_cython/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/types.py -------------------------------------------------------------------------------- /src/hatch_cython/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/src/hatch_cython/utils.py -------------------------------------------------------------------------------- /taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/taskfile.yaml -------------------------------------------------------------------------------- /test_libraries/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/bootstrap.py -------------------------------------------------------------------------------- /test_libraries/only_included/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/LICENSE.txt -------------------------------------------------------------------------------- /test_libraries/only_included/hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/hatch.toml -------------------------------------------------------------------------------- /test_libraries/only_included/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/pyproject.toml -------------------------------------------------------------------------------- /test_libraries/only_included/src/example_only_included/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/src/example_only_included/__about__.py -------------------------------------------------------------------------------- /test_libraries/only_included/src/example_only_included/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/src/example_only_included/__init__.py -------------------------------------------------------------------------------- /test_libraries/only_included/src/example_only_included/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/src/example_only_included/compile.py -------------------------------------------------------------------------------- /test_libraries/only_included/src/example_only_included/did.pyi: -------------------------------------------------------------------------------- 1 | def did_compile() -> bool: ... 2 | -------------------------------------------------------------------------------- /test_libraries/only_included/src/example_only_included/dont_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/src/example_only_included/dont_compile.py -------------------------------------------------------------------------------- /test_libraries/only_included/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/tests/__init__.py -------------------------------------------------------------------------------- /test_libraries/only_included/tests/test_compiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/tests/test_compiled.py -------------------------------------------------------------------------------- /test_libraries/only_included/tests/test_didnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/only_included/tests/test_didnt.py -------------------------------------------------------------------------------- /test_libraries/simple_structure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/simple_structure/.gitignore -------------------------------------------------------------------------------- /test_libraries/simple_structure/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/simple_structure/LICENSE.txt -------------------------------------------------------------------------------- /test_libraries/simple_structure/example_lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_libraries/simple_structure/hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/simple_structure/hatch.toml -------------------------------------------------------------------------------- /test_libraries/simple_structure/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/simple_structure/pyproject.toml -------------------------------------------------------------------------------- /test_libraries/simple_structure/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_libraries/src_structure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/.gitignore -------------------------------------------------------------------------------- /test_libraries/src_structure/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/LICENSE.txt -------------------------------------------------------------------------------- /test_libraries/src_structure/hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/hatch.toml -------------------------------------------------------------------------------- /test_libraries/src_structure/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_libraries/src_structure/include/something.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/include/something.cc -------------------------------------------------------------------------------- /test_libraries/src_structure/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/pyproject.toml -------------------------------------------------------------------------------- /test_libraries/src_structure/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_libraries/src_structure/scripts/custom_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/scripts/custom_include.py -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/__about__.py -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/__init__.py -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/_alias.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/_alias.pyx -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/custom_includes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/custom_includes.pyi -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/custom_includes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/custom_includes.pyx -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/mod_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/mod_a/adds.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/mod_a/adds.pyi -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/mod_a/adds.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/mod_a/adds.pyx -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/mod_a/deep_nest/creates.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/mod_a/deep_nest/creates.pyx -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/mod_a/some_defn.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/mod_a/some_defn.pxd -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/mod_a/some_defn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/mod_a/some_defn.py -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/no_compile/abc.py: -------------------------------------------------------------------------------- 1 | def test_nocompile(): 2 | return 41 3 | -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/normal.py -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/platform/darwin.pyx: -------------------------------------------------------------------------------- 1 | cpdef void test_darwin(): 2 | pass 3 | -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/platform/freebsd.pyx: -------------------------------------------------------------------------------- 1 | cpdef void test_freebsd(): 2 | pass 3 | -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/platform/linux.pyx: -------------------------------------------------------------------------------- 1 | cpdef void test_linux(): 2 | pass 3 | -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/platform/windows.pyx: -------------------------------------------------------------------------------- 1 | cpdef void test_win(): 2 | pass 3 | -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/templated.pyi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/templated.pyi.in -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/templated.pyx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/templated.pyx.in -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/templated_maxosx_sample.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/templated_maxosx_sample.pyi -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/templated_maxosx_sample.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/templated_maxosx_sample.pyx -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/test.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/test.pyi -------------------------------------------------------------------------------- /test_libraries/src_structure/src/example_lib/test.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/src/example_lib/test.pyx -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/__init__.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_aliased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_aliased.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_custom_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_custom_includes.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_example.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_normal.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_platform.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_submodule.py -------------------------------------------------------------------------------- /test_libraries/src_structure/tests/test_templated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/test_libraries/src_structure/tests/test_templated.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_files.py -------------------------------------------------------------------------------- /tests/test_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_includes.py -------------------------------------------------------------------------------- /tests/test_macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_macros.py -------------------------------------------------------------------------------- /tests/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_platform.py -------------------------------------------------------------------------------- /tests/test_platform_pyversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_platform_pyversion.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/test_plugin_excludes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_plugin_excludes.py -------------------------------------------------------------------------------- /tests/test_setuppy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_setuppy.py -------------------------------------------------------------------------------- /tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_templates.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_xenv_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/test_xenv_merge.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-auchincloss/hatch-cython/HEAD/tests/utils.py --------------------------------------------------------------------------------