From eb46ab352f0143fcf6255675342c02a43ba2cd29 Mon Sep 17 00:00:00 2001 From: Chun Ly Date: Thu, 4 Feb 2021 15:42:22 -0700 Subject: [PATCH] Add setup.py script for packaging --- setup.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..69e9349 --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +from setuptools import setup + +with open("README.md", "r") as fh: + long_description = fh.read() + +with open("requirements.txt", "r") as fr: + requirements = fr.read().splitlines() + +setup( + name='ReDATA_README_Tool', + version='0.0.1', + packages=['readme_tool'], + url='https://github.com/UAL-ODIS/ReDATA_README_Tool', + license='MIT License', + author='Chun Ly', + author_email='astro.chun@gmail.com', + description='A Python web UI built on FastAPI to gather metadata to construct a README', + long_description=long_description, + long_description_content_type='text/markdown', + install_requires=requirements, + python_requires='>=3.7', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' + ] +)