-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
37 lines (35 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import find_packages, setup
# Get the long description from the relevant file
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='statdp',
version='0.1',
description='Counterexample Detection Using Statistical Methods for Incorrect Differential-Privacy Algorithms.',
long_description=long_description,
url='',
author='Zeyu Ding/Yuin Wang/Guanhong Wang/Danfeng Zhang/Daniel Kifer',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Differential Privacy :: Statistics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
keywords='Differential Privacy, Hypothesis Test, Statistics',
packages=find_packages(exclude=['tests']),
install_requires=['numpy', 'tqdm', 'numba'],
extras_require={
'test': ['pytest-cov', 'pytest', 'coverage', 'flaky', 'scipy'],
},
entry_points={
'console_scripts': [
'statdp=statdp.__main__:main',
],
},
)