This repository was archived by the owner on Feb 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
75 lines (63 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
import os
from setuptools import setup
pwd = os.path.abspath(os.path.dirname(__file__))
INSTALL_REQUIRES = [
'numpy >= 1.14.3',
'matplotlib >= 2.2.2',
'mako ==1.0.12',
'pandas >= 0.24.2',
'scikit-learn >= 0.20.2',
'pytest >= 4.6.2',
'python-dateutil >= 2.7.3',
'setuptools >= 39.1.0'
]
LONG_DESCRIPTION = """
The recent enforcement of data privacy protection regulations, such as GDPR,
has made data sharing more difficult. This tool intends to facilitate data
sharing from a customer by synthesizing a dataset based on the original dataset
for later machine learning.
There are two parts to this tool:
- Data synthesizer
Synthesize a dataset based on the original dataset. It accepts CSV data as
input, and output a synthesized dataset based on Differential Privacy. The
algorithm in the data synthesizer reference to the paper (
http://dimacs.rutgers.edu/~graham/pubs/papers/privbayes-tods.pdf).
- Data utility evaluation
Evaluate the data utility for the synthesized dataset. The original dataset
and the synthesized dataset as the input, one utility evaluation report will
be generated with several indicators.
"""
about = {}
with open(os.path.join(pwd, 'ds4ml', '__version__.py'), mode='r',
encoding='utf-8') as f:
exec(f.read(), about)
def main():
setup(name=about['__title__'],
description=about['__description__'],
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url=about['__url__'],
project_urls={
"Bug Tracker": about['__url__'] + "/issues",
"Documentation": about['__url__'],
"Source Code": about['__url__'],
},
version=about['__version__'],
packages=['ds4ml', 'ds4ml.command'],
package_data={
'': ['template/*.html']
},
entry_points={
'console_scripts': [
'data-pattern = ds4ml.command.pattern:main',
'data-synthesize = ds4ml.command.synthesize:main',
'data-evaluate = ds4ml.command.evaluate:main'
]
},
maintainer=about['__maintainer__'],
maintainer_email=about['__maintainer_email__'],
install_requires=INSTALL_REQUIRES,
platform='any')
if __name__ == '__main__':
main()