From 9773dbc24d103867934a1678ed90bb57957adccb Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 6 Apr 2020 21:55:15 +0200 Subject: feat: init setup --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py (limited to 'setup.py') 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"], +) -- cgit v1.2.3-18-g5258