Introduce setuptools support

Add a pyproject.toml and setup.py for using setuptools to install
pySim and its upstream dependencies.

Change-Id: I5698f3b29184340db69a156f985aa3c78d9b5674
This commit is contained in:
Harald Welte
2021-04-03 15:13:13 +02:00
parent 4f2c546613
commit 9813dc958b
2 changed files with 25 additions and 0 deletions

3
pyproject.toml Normal file
View File

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