setup.py 364 B

1234567891011121314
  1. """
  2. This is a build file for the
  3. """
  4. from setuptools import setup, find_packages
  5. setup(
  6. name = "privacykit",
  7. version = "0.9.2",
  8. author = "Healthcare/IO - The Phi Technology LLC & Health Information Privacy Lab",
  9. author_email = "info@the-phi.com",
  10. license = "MIT",
  11. packages=['privacykit'],
  12. install_requires = ['numpy','pandas']
  13. )