Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 750 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 750 Bytes

Setuptools with pyproject.toml and no setup.py

This package is an example project for building a Python package (i.e. wheel or sdist). It relies on setuptools as a build backend with pyproject.toml for configuration.

Commands:

Note

setuptools doesn't manage your virtual environment. You'll need to create and activate one yourself (e.g. with venv).

  • Editable install:
# requires pip >= 21.3
python -m pip install -e .
  • Run code:
python -c "import demo"
  • Build:
python -m pip install build
python -m build
  • Upload to PyPI:
python -m pip install twine
python -m twine upload dist/*