-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.12 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
[tool.poetry]
name = "datahub-postgres-lineage"
version = "0.1.3"
description = "Extract table lineage from Postgres views"
authors = ["Contiamo <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/contiamo/datahub-postgres-lineage"
keywords = ["datahub", "postgres", "sql lineage"]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
acryl-datahub = {extras = ["sqlalchemy"], version = "^0.9.3.2"}
pydantic = "^1.10.2"
psycopg2-binary = "^2.9.5"
geoalchemy2 = "^0.12.5"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
mypy = "^0.991"
flake8 = "^6.0.0"
ipython = "^8.7.0"
sqlalchemy-stubs = "^0.4"
isort = "^5.11.4"
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests/unit",
]
[tool.mypy]
plugins = [
"sqlmypy",
"pydantic.mypy"
]
exclude = "^(venv|build|dist)/"
ignore_missing_imports = true
strict_optional = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
warn_unused_configs = true
disallow_untyped_defs = false