-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
48 lines (44 loc) · 1.48 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
import pathlib
from setuptools import setup, find_packages
local_path = pathlib.Path(__file__).parent
install_requires = (local_path / "requirements.txt").read_text().splitlines()
mysql_extras = [
"mysqlclient~=2.1",
]
postgres_extras = [
"psycopg2-binary~=2.9",
]
snowflake_extras = [
"snowflake-sqlalchemy~=1.4",
]
bigquery_extras = ["sqlalchemy-bigquery[bqstorage]~=1.6"]
connectors_extras = mysql_extras + postgres_extras + snowflake_extras + bigquery_extras
setup(
name="gretel-trainer",
use_scm_version=True,
setup_requires=["setuptools_scm"],
package_dir={"": "src"},
install_requires=install_requires,
extras_require={
"connectors": connectors_extras,
"mysql": mysql_extras,
"postgres": postgres_extras,
"snowflake": snowflake_extras,
"bigquery": bigquery_extras,
},
python_requires=">=3.9",
packages=find_packages("src"),
package_data={"": ["*.yaml"]},
include_package_data=True,
description="Synthetic Data Generation with optional Differential Privacy",
url="https://github.com/gretelai/gretel-trainer",
license="https://gretel.ai/license/source-available-license",
classifiers=[
"Programming Language :: Python :: 3",
"License :: Free To Use But Restricted",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)