-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
129 lines (125 loc) · 2.83 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
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "odd-cli"
version = "0.2.12"
description = "Command line tool for working with OpenDataDiscovery. "
authors = [ "Pavel Makarichev <[email protected]>",]
keywords = [ "Open Data Discovery", "Metadata", "Data Discovery", "Data Observability",]
readme = "README.md"
[[tool.poetry.packages]]
include = "odd_cli"
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.7.0"
odd-models = "^2.0.46"
oddrn-generator = "^0.1.102"
pyarrow = "^16.1.0"
tqdm = "^4.66.4"
odd-dbt = "^0.2.13"
agate = "^1.7.1"
aiohttp = "^3.9.5"
aiosignal = "^1.3.1"
appdirs = "^1.4.4"
asn1crypto = "^1.5.1"
async-timeout = "^4.0.3"
attrs = "^23.2.0"
babel = "^2.15.0"
certifi = "^2024.6.2"
cffi = "^1.16.0"
cfgv = "^3.4.0"
chardet = "^5.2.0"
charset-normalizer = "^3.3.2"
click = "^8.1.7"
colorama = "^0.4.6"
commonmark = "^0.9.1"
cryptography = "^42.0.8"
dbt-core = "^1.7.12"
dbt-extractor = "^0.5.1"
dbt-postgres = "^1.7.12"
dbt-semantic-interfaces = "^0.4.4"
dbt-snowflake = "^1.7.5"
diff-cover = "^9.0.0"
distlib = "^0.3.8"
exceptiongroup = "^1.2.1"
filelock = "^3.15.1"
frozenlist = "^1.4.1"
funcy = "^2.0"
greenlet = "^3.0.3"
identify = "^2.5.36"
idna = "^3.7"
importlib-metadata = "^6.11.0"
iniconfig = "^2.0.0"
isodate = "^0.6.1"
jaraco-classes = "^3.4.0"
jeepney = "^0.8.0"
jinja2 = "^3.1.4"
jsonschema = "^4.22.0"
jsonschema-specifications = "^2023.12.1"
keyring = "^24.3.1"
leather = "^0.4.0"
logbook = "^1.5.3"
markupsafe = "^2.1.5"
mashumaro = "^3.13.1"
minimal-snowplow-tracker = "^0.0.2"
more-itertools = "^10.3.0"
msgpack = "^1.0.8"
multidict = "^6.0.5"
mypy-extensions = "^1.0.0"
networkx = "^3.2.1"
nodeenv = "^1.9.1"
numpy = "^2.0.0"
packaging = "^24.1"
parsedatetime = "^2.6"
pathspec = "^0.11.2"
platformdirs = "^4.2.2"
pluggy = "^1.5.0"
protobuf = "^4.25.3"
psycopg2-binary = "v2.9.9"
pycparser = "^2.22"
pydantic = "^2.7.4"
pygments = "^2.18.0"
pyjwt = "^2.8.0"
pyopenssl = "^24.1.0"
python-dateutil = "^2.9.0.post0"
python-slugify = "^8.0.4"
pytimeparse = "^1.1.8"
pytz = "^2024.1"
pywin32-ctypes = "^0.2.2"
pyyaml = "^6.0.1"
referencing = "^0.35.1"
regex = "^2024.5.15"
requests = "^2.28.2"
rich = "^12.6.0"
rpds-py = "^0.18.1"
secretstorage = "^3.3.3"
shellingham = "^1.5.4"
six = "^1.16.0"
snowflake-connector-python = "^3.11.0"
sortedcontainers = "^2.4.0"
sql-metadata = "^2.12.0"
sqlalchemy = "^2.0.31"
sqlfluff = "3.0.5"
sqllineage = "^1.5.3"
sqlparse = "^0.5.0"
tblib = "^3.0.0"
text-unidecode = "^1.3"
toml = "^0.10.2"
tomli = "^2.0.1"
tomlkit = "^0.12.5"
typing-extensions = "^4.12.2"
urllib3 = "^1.26.19"
virtualenv = "^20.26.2"
win32-setctime = "^1.1.0"
yarl = "^1.9.4"
zipp = "^3.19.2"
setuptools = "^70.0.0"
[tool.poetry.scripts]
odd = "odd_cli.main:app"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
mock = "^5.0.1"
pre-commit = "^3.1.0"
ruff = "^0.0.278"
black = "^22.12.0"