setup.py 291 B

1234567891011121314
  1. """
  2. This is a build file for the
  3. """
  4. from setuptools import setup, find_packages
  5. setup(
  6. name = "risk",
  7. version = "0.1",
  8. author = "Health Information Privacy Lab",
  9. author_email = "steve.l.nyemba@vanderbilt.edu",
  10. license = "MIT",
  11. packages = ['numpy','pandas']
  12. )