-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
46 lines (41 loc) · 1.32 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
38
39
40
41
42
43
44
45
46
from setuptools import setup
def readme():
with open("README.md") as readme_file:
return readme_file.read()
configuration = {
"name": "member-learn",
"version": "0.0.1",
"description": "Membership inference attacks with sklearn",
"long_description": readme(),
"classifiers": [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
],
"keywords": "membership inference adversarial attack privacy machine-learning",
"url": "https://github.com/BielStela/membership_inference",
"maintainer": "Biel Stela",
"maintainer_email": "[email protected]",
"license": "BSD",
"packages": ["mblearn"],
"install_requires": [
"numpy >= 1.13",
"scikit-learn >= 0.16",
"scipy >= 0.19",
"pandas",
"tqdm",
],
"ext_modules": [],
"cmdclass": {},
"data_files": (),
}
setup(**configuration)