summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-04-06 21:55:15 +0200
committerSanto Cariotti <dcariotti24@gmail.com>2020-04-06 21:55:15 +0200
commit9773dbc24d103867934a1678ed90bb57957adccb (patch)
tree5af58609dbf1e4dc3b041268ce6d0e5647481bb8
parent2808925e272dd0ff23e50587aef6d64292407ae0 (diff)
feat: init setup
-rw-r--r--setup.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..9f7472e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,18 @@
+import setuptools
+
+setuptools.setup(
+ name="frest",
+ version="0.0.17",
+ author="Santo Cariotti",
+ description="Write REST API quickly",
+ url="https://github.com/dcariotti/frest",
+ packages=setuptools.find_packages(),
+ package_data={"frest": ["templates/*.txt"]},
+ classifiers=[
+ "Programming Language :: Python :: 3",
+ "License :: OSI Approved :: MIT License",
+ "Operating System :: OS Independent",
+ ],
+ python_requires=">=3.6",
+ scripts=["bin/frest"],
+)