forked from gretelai/gretel-synthetics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.43 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
from setuptools import setup, find_packages
from os import path
this_dir = path.abspath(path.dirname(__file__))
with open(path.join(this_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# with open(path.join(this_dir, 'VERSION')) as f:
# version = f.read()
setup(
name='gretel-synthetics',
author='Gretel Labs, Inc.',
author_email='[email protected]',
use_scm_version=True,
setup_requires=["setuptools_scm"],
description='Synthetic Data Generation with optional Differential Privacy',
url='https://github.com/gretelai/gretel-synthetics',
license='http://www.apache.org/licenses/LICENSE-2.0',
long_description=long_description,
long_description_content_type='text/markdown',
package_dir={'': 'src'},
packages=find_packages('src'),
python_requires=">=3.6",
install_requires=[
'tensorflow_privacy==0.5.1',
'sentencepiece==0.1.91',
'smart_open>=2.1.0,<3.0',
'tqdm<5.0',
'pandas>=1.1.0',
'numpy>=1.18.0',
'dataclasses==0.7;python_version<"3.7"',
'loky==2.8.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
)