Skip to content
This repository has been archived by the owner on Mar 11, 2022. It is now read-only.

Commit

Permalink
Add setup.py script for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
astrochun committed Feb 4, 2021
1 parent b334218 commit eb46ab3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
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'
]
)

0 comments on commit eb46ab3

Please sign in to comment.