Move the metadata from setup.py into setup.cfg.

Added `pyproject.toml`.
Removed `setup.py` - it is no longer needed.
Got rid of tests erroroneously finding their way into the wheel.
This commit is contained in:
KOLANICH
2022-11-10 15:17:14 +03:00
parent e6e23fd512
commit ca88e4e49d
4 changed files with 39 additions and 54 deletions

3
pyproject.toml Normal file
View File

@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=42.2.0"]
build-backend = "setuptools.build_meta"