1234567891011121314 |
- """
- This is a build file for the
- """
- from setuptools import setup, find_packages
-
- setup(
- name = "risk",
- version = "0.1",
- author = "Health Information Privacy Lab",
- author_email = "steve.l.nyemba@vanderbilt.edu",
- license = "MIT",
- packages = ['numpy','pandas']
- )
|