adding dependencies

This commit is contained in:
Steve Nyemba 2019-03-05 13:01:11 -06:00
parent e8555520d9
commit 7590b12ece
1 changed files with 6 additions and 1 deletions

View File

@ -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']
)