* Create pyproject.toml * Implement a custom build backend (see below) in packager directory. Build logic from setup.py has been refactored and migrated into the new backend. * Tested: pip wheel . (build wheel), python -m build --sdist . (source distribution)
14 lines
191 B
YAML
14 lines
191 B
YAML
# conda environment for source distribution test.
|
|
name: sdist_test
|
|
channels:
|
|
- conda-forge
|
|
dependencies:
|
|
- python=3.8
|
|
- pip
|
|
- wheel
|
|
- cmake
|
|
- ninja
|
|
- python-build
|
|
- c-compiler
|
|
- cxx-compiler
|