privacykit/setup.py

14 lines
321 B
Python
Raw Normal View History

2019-03-05 17:58:48 +00:00
"""
This is a build file for the
"""
from setuptools import setup, find_packages
setup(
name = "risk",
version = "0.1",
2019-03-05 19:01:11 +00:00
author = "Health Information Privacy Lab",
author_email = "steve.l.nyemba@vanderbilt.edu",
license = "MIT",
2019-03-05 20:46:41 +00:00
packages=['risk'],
2019-03-05 19:06:51 +00:00
install_requires = ['numpy','pandas']
2019-03-05 17:58:48 +00:00
)