Skip to content

Commit 2b446b9

Browse files
committed
Add setup.py and pyproject.toml for distribution
1 parent 389606d commit 2b446b9

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from setuptools import setup
2+
3+
if __name__ == "__main__":
4+
setup()

0 commit comments

Comments
 (0)