-
Notifications
You must be signed in to change notification settings - Fork 960
/
setup.py
146 lines (120 loc) · 3.38 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Copyright Contributors to the Amundsen project.
# SPDX-License-Identifier: Apache-2.0
import os
from setuptools import find_packages, setup
__version__ = '7.5.2'
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),
'requirements.txt')
with open(requirements_path, 'r') as requirements_file:
requirements = requirements_file.readlines()
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),
'requirements-dev.txt')
with open(requirements_path, 'r') as requirements_file:
requirements_dev = requirements_file.readlines()
kafka = ['confluent-kafka==2.3.0']
cassandra = ['cassandra-driver==3.20.1']
glue = ['boto3==1.17.23']
snowflake = [
'snowflake-connector-python',
'snowflake-sqlalchemy'
]
athena = ['PyAthena[SQLAlchemy]>=1.0.0, <2.0.0']
# Python API client for google
# License: Apache Software License
# Upstream url: https://github.com/googleapis/google-api-python-client
bigquery = [
'google-api-python-client>=1.6.0, <2.0.0dev',
'google-auth-httplib2>=0.0.1',
'google-auth>=1.16.0, <3.0.0dev'
]
jsonpath = ['jsonpath_rw==1.4.0']
db2 = [
'ibm_db>=3.0.1',
'ibm-db-sa-py3>=0.3.1-1'
]
dremio = [
'pyodbc==4.0.30'
]
druid = [
'pydruid'
]
spark = [
'pyspark == 3.0.1'
]
neptune = [
'amundsen-gremlin>=0.0.9',
'Flask==1.0.2',
'gremlinpython==3.4.3',
'requests-aws4auth==1.1.0',
'typing-extensions==4.1.0',
'overrides==2.5',
'boto3==1.17.23'
]
feast = [
'feast==0.34.0',
'dask[dataframe]<=2024.5.0',
]
atlas = [
'pyatlasclient>=1.1.2',
'apache-atlas>=0.0.11'
]
oracle = [
'cx_Oracle==8.2.1'
]
rds = [
'sqlalchemy>=1.3.6',
'mysqlclient>=1.3.6,<3'
]
salesforce = [
'simple-salesforce>=1.11.2'
]
teradata = [
'teradatasqlalchemy==17.0.0.0'
]
schema_registry = [
'python-schema-registry-client==2.4.0'
]
all_deps = requirements + requirements_dev + kafka + cassandra + glue + snowflake + athena + \
bigquery + jsonpath + db2 + dremio + druid + spark + feast + neptune + rds \
+ atlas + salesforce + oracle + teradata + schema_registry
setup(
name='amundsen-databuilder',
version=__version__,
description='Amundsen Data builder',
url='https://www.github.com/amundsen-io/amundsen/tree/main/databuilder',
maintainer='Amundsen TSC',
maintainer_email='amundsen-tsc@lists.lfai.foundation',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
dependency_links=[],
install_requires=requirements,
python_requires='>=3.8',
extras_require={
'all': all_deps,
'dev': requirements_dev,
'kafka': kafka, # To use with Kafka source extractor
'cassandra': cassandra,
'glue': glue,
'snowflake': snowflake,
'athena': athena,
'bigquery': bigquery,
'jsonpath': jsonpath,
'db2': db2,
'dremio': dremio,
'druid': druid,
'neptune': neptune,
'delta': spark,
'feast': feast,
'atlas': atlas,
'rds': rds,
'salesforce': salesforce,
'oracle': oracle,
'teradata': teradata,
'schema_registry': schema_registry,
},
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)