-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 938 Bytes
/
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
[tool.poetry]
name = "odd-models"
version = "2.0.51"
description = "Open Data Discovery Models"
authors = ["Open Data Discovery <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/opendatadiscovery/odd-models-package"
repository = "https://github.com/opendatadiscovery/odd-models-package"
keywords = ["odd-models", "odd_models", "opendatadiscovery"]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.7.0"
sqlparse = "^0.5.0"
requests = "^2.31.0"
sql-metadata = "^2.6.0"
loguru = "^0.7.2"
oddrn-generator = "^0.1.101"
funcy = "^2.0"
sqllineage = "^1.4.7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
black = "^24.4.0"
isort = "^5.13.2"
pre-commit = "^3.7.0"
datamodel-code-generator = "^0.25.5"
pytest-mock = "^3.14.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"