Python scripting to automate fetching data from RDAS.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 509B

12345678910111213141516171819202122
  1. import setuptools
  2. setuptools.setup(
  3. name="Python RDAS Fetcher",
  4. version="0.1",
  5. description="Gets data from the SAMHSA Restricted-Use Data Analysis System",
  6. url="https://git.noelle.com/noelle/python_rdas",
  7. author="Noëlle Anthony",
  8. author_email="noelle.d.anthony@gmail.com",
  9. license="None",
  10. packages=["python_rdas"],
  11. install_requires=[
  12. "requests",
  13. "time",
  14. "os",
  15. "sys",
  16. "json",
  17. "csv",
  18. "bs4"
  19. ],
  20. zip_safe=False
  21. )