Closed KmolYuan closed 3 years ago
Instead of setup.py and requirements.txt, use pyproject.toml to build all the things.
setup.py
requirements.txt
pyproject.toml
Build the wheel to dist:
dist
pip wheel . --no-deps -w dist
PEP 621
PEP517
Commands:
pip install -e . -U python -m build --wheel / --sdist
Major commands have been confirmed.
Instead of
setup.py
andrequirements.txt
, usepyproject.toml
to build all the things.Build the wheel to
dist
: