Browse Source

adding dependencies

Steve Nyemba 6 years ago
parent
commit
7590b12ece
1 changed files with 6 additions and 1 deletions
  1. 6 1
      setup.py

+ 6 - 1
setup.py

@@ -6,5 +6,10 @@ from setuptools import setup, find_packages
 setup(
     name = "risk",
     version = "0.1",
-    packages = find_packages()
+    author = "Health Information Privacy Lab",
+    author_email = "steve.l.nyemba@vanderbilt.edu",
+    license = "MIT",
+
+    packages = ['numpy','pandas'],
+    install_requires = ['numpy','pandas']
     )