| import setuptools | |||||
| setuptools.setup( | |||||
| name="Python RDAS Fetcher", | |||||
| version="0.1", | |||||
| description="Gets data from the SAMHSA Restricted-Use Data Analysis System", | |||||
| url="https://git.noelle.com/noelle/python_rdas", | |||||
| author="Noëlle Anthony", | |||||
| author_email="noelle.d.anthony@gmail.com", | |||||
| license="None", | |||||
| packages=["python_rdas"], | |||||
| install_requires=[ | |||||
| "requests", | |||||
| "time", | |||||
| "os", | |||||
| "sys", | |||||
| "json", | |||||
| "csv", | |||||
| "bs4" | |||||
| ], | |||||
| zip_safe=False | |||||
| ) |