You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
364 B
Python
15 lines
364 B
Python
"""
|
|
This is a build file for the
|
|
"""
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = "privacykit",
|
|
version = "0.9.0",
|
|
author = "Healthcare/IO - The Phi Technology LLC & Health Information Privacy Lab",
|
|
author_email = "info@the-phi.com",
|
|
license = "MIT",
|
|
packages=['privacykit'],
|
|
install_requires = ['numpy','pandas']
|
|
)
|