tilezen / mapbox-vector-tile

Python package for encoding & decoding Mapbox Vector Tiles
MIT License
240 stars 47 forks source link

Fix the build system not to install docs into site-packages #134

Open mgorny opened 3 months ago

mgorny commented 3 months ago

Fix pyproject.toml not to install README.md and CHANGELOG.md straight into site-packages directory, i.e. as:

/usr/lib/python3.12/site-packages/README.md

To do that, explicitly specify format = "sdist", so that the files are included in sdist archives only, and not in wheels, where there would end up being treated as Python packages.