-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (54 loc) · 1.94 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
47
48
49
50
51
52
53
54
55
56
import setuptools
setuptools.setup(
name="privgem",
version="0.1.1",
description="privgem: Privacy-Preserving Generative Models",
author=u"Kasra Hosseini",
license="MIT License",
keywords=["generative models", "privacy", "utility", "Deep Learning", "QUIPP"],
long_description = open('README.md', encoding='utf-8', errors='replace').read(),
long_description_content_type = 'text/markdown',
zip_safe = False,
url="https://github.com/kasra-hosseini/privgem",
download_url="https://github.com/kasra-hosseini/privgem/archive/refs/heads/develop.zip",
packages = setuptools.find_packages(),
include_package_data = True,
platforms="OS Independent",
python_requires='>=3.7,<3.9',
install_requires=[
"shap<0.40",
"sdv<0.13",
"ctgan @ git+https://github.com/kasra-hosseini/CTGAN.git@privgem_develop",
"opacus>=0.9.0,<1",
"torch>=1.6.0,<1.9",
"jupyterlab<3.2",
"jupyter-client>=6.1.5",
"jupyter-core>=4.6.3",
"matplotlib<3.5",
"PuLP<=2.5",
"networkx<2.7",
"dython<0.7"
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
entry_points={
'console_scripts': [
'privgem = privgem.privgem:main',
],
}
)