privacykit/setup.py

15 lines
364 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(
2022-09-15 22:56:15 +00:00
name = "privacykit",
version = "0.9.0",
2022-09-15 22:15:29 +00:00
author = "Healthcare/IO - The Phi Technology LLC & Health Information Privacy Lab",
author_email = "info@the-phi.com",
2019-03-05 19:01:11 +00:00
license = "MIT",
2022-09-15 22:56:15 +00:00
packages=['privacykit'],
2019-03-05 19:06:51 +00:00
install_requires = ['numpy','pandas']
2022-09-15 22:15:29 +00:00
)