-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (73 loc) · 2.77 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
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='datametry',
description='Data chain observability',
version='0.2.9',
packages=find_packages(),
python_requires='>=3.6.2',
entry_points='''
[console_scripts]
edr=cli.cli:cli
''',
author="datametry",
package_data={"": ["header.html", "etl_project/*", "etl_project/macros/*", "etl_project/models/*"]},
keyword="data, lineage, data lineage, data warehouse, DWH, observability, data monitoring, data observability, "
"Snowflake, BigQuery, Redshift, data reliability, analytics engineering",
long_description=README,
install_requires=[
'click>=7.0,<9',
'pyfiglet',
'etl-core>=0.20,<2.0.0',
'requests<3.0.0',
'beautifulsoup4',
'posthog',
'ruamel.yaml',
'alive-progress<=2.3.1'
],
extras_require={
'snowflake': ['etl-snowflake>=0.20,<2.0.0'],
'bigquery': ['etl-bigquery>=0.20,<2.0.0'],
'redshift': ['etl-redshift>=0.20,<2.0.0'],
'postgres': ['etl-postgres>=0.20,<2.0.0'],
'lineage': ['snowflake-connector-python[secure-local-storage]>=2.4.1,<2.8.0',
'click>=8,<9',
'requests>=2.7,<3.0.0',
'networkx>=2.3,<3',
'sqllineage==1.2.4',
'pyvis>=0.1,<1',
'sqlparse>=0.3.1,<0.5',
'sqlfluff<0.9.0',
'google-cloud-bigquery>=1.25.0,<3',
'google-api-core>=1.16.0,<3',
'python-dateutil>=2.7.2,<3.0.0',
# temp solution until refactor of utils.dbt
'etl-bigquery>=0.20,<2.0.0',
# Indirect
'protobuf<4,>=3.13.0',
'typing-extensions<3.11,>=3.7.4',
'flask<1.1.1',
'Jinja2>=2.10.1,<3',
'tomli<2.0.0,>=0.2.6',
'urllib3<1.26,>=1.20',
'MarkupSafe==2.0.1']
},
long_description_content_type="text/markdown",
license='',
url='https://github.com/datasphere-oss/datametry',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)