-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
118 lines (96 loc) · 2.62 KB
/
pyproject.toml
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
[tool.poetry]
name = "adapta"
version = "0.0.0"
description = "Logging, data connectors, monitoring, secret handling and general lifehacks to make data people lives easier."
authors = ["ECCO Sneaks & Data <[email protected]>"]
maintainers = ['GZU <[email protected]>', 'JRB <[email protected]>']
license = 'Apache 2.0'
readme = "README.md"
repository = 'https://github.com/SneaksAndData/adapta'
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
requests = "^2.26"
backoff = "^2.2"
cryptography = "^36"
pandas = { version = ">=2.0.0,<3.0", extras = ["performance"] }
pyarrow = ">=7.0"
dataclasses-json = "~0.6"
limits = "~3.7"
polars = ">=1.7 <2.0"
pandera = ">=0.20.3 <1.0"
cassandra-driver = { version = "~3.29.1", optional = true }
deltalake = { version = "^0.18.1", optional = true }
azure-identity = { version = "^1.7", optional = true }
azure-storage-blob = { version = ">12.7.0,<=12.16.0", optional = true }
azure-mgmt-storage = { version = "~19.1.0", optional = true }
azure-keyvault-secrets = { version = "^4.3", optional = true }
azure-servicebus = { version = "~7.6", optional = true }
adlfs = { version = '~2024', optional = true }
boto3 = { version = "^1.28.0", optional = true}
botocore = { version = "^1.31", optional = true}
datadog = { version = "~0.49.1", optional = true }
datadog-api-client = { version = "~2.18.0", optional = true }
SQLAlchemy = { version = "~2.0", optional = true }
pyodbc = { version = "~4.0", optional = true }
mlflow-skinny = { version = "~2.17.0", optional = true }
redis = { version = "~4.4.0", optional = true, extras = ['hiredis'] }
hvac = { version = "~0.11.2", optional = true }
fsspec = { version = "^2024" }
trino = { version = "^0.327.0", optional = true, extras = ['sqlalchemy'] }
snowflake-connector-python = { version = "^3.4.0", optional = true }
[tool.poetry.extras]
azure = [
'azure-identity',
'azure-storage-blob',
'azure-mgmt-storage',
'azure-keyvault-secrets',
'adlfs'
]
azure-servicebus = [
'azure-servicebus',
]
datadog = [
'datadog',
'datadog-api-client'
]
databases = [
'SQLAlchemy',
'pyodbc'
]
ml = [
'mlflow-skinny'
]
caching = [
'redis'
]
hashicorp = [
'hvac'
]
trino = [
'trino'
]
snowflake = [
'snowflake-connector-python'
]
storage = [
"deltalake",
"cassandra-driver"
]
aws = [
"boto3",
"botocore"
]
[tool.poetry.group.dev.dependencies]
pytest = "^7.1"
pytest-mock = "~3.6.1"
pytest-xdist = "~3.5.0"
pytest-asyncio = "~0.23.3"
pytest-cov = "~2.12"
pylint = "^3"
cryptography = "~36.0"
black = "^23"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"