Sfoglia il codice sorgente

adding dependencies

Steve Nyemba 6 anni fa
parent
commit
7590b12ece
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  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']
     )