Browse Source

Convert to package

master
Noëlle 4 years ago
parent
commit
b808e29b6e
2 changed files with 22 additions and 0 deletions
  1. 0
    0
      python_rdas/__init__.py
  2. 22
    0
      setup.py

+ 0
- 0
python_rdas/__init__.py View File


+ 22
- 0
setup.py View File

@@ -0,0 +1,22 @@
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
)

Loading…
Cancel
Save