aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2021-04-03 15:13:13 +0200
committerHarald Welte <laforge@osmocom.org>2021-04-04 10:54:46 +0200
commit9813dc958b05fb86c8c2f3d28df7bde2f4a2d309 (patch)
tree5b17c708e15c1b8a0f04712d86d606cec391f766 /pyproject.toml
parent4f2c54661356d74f5257030b46e6981a080a4fc7 (diff)
Introduce setuptools support
Add a pyproject.toml and setup.py for using setuptools to install pySim and its upstream dependencies. Change-Id: I5698f3b29184340db69a156f985aa3c78d9b5674
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..9787c3b
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["setuptools", "wheel"]
+build-backend = "setuptools.build_meta"