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",
|
2022-09-15 22:15:29 +00:00
|
|
|
version = "0.8.1",
|
|
|
|
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
|
|
|
)
|