-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (52 loc) · 1.11 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
[tool.poetry]
name = "dbsamizdapper"
version = "0.0.4"
description = ""
authors = ["Josh Brooks <[email protected]>",]
readme = "README.md"
packages = [
{ include = "dbsamizdat" },
]
exclude = [
{ path = "tests/"},
{ path = "sample_app/"}
]
[tool.poetry.dependencies]
python = "^3.10"
toposort = "^1.10"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit = "^3.3.2"
pytest = "^7.3.1"
mypy = "^1.3.0"
types-toposort = "^1.10.0.0"
pytest-cov = "^4.1.0"
python-dotenv = "^1.0.0"
# In addition you will need one of
# psycopg / psycopg2
# One option:
# psycopg = {extras = ["binary"], version = "^3.1.9"}
# psycopg2-binary = "*"
# types-psycopg2 = "*"
[tool.pylint.format]
max-line-length = "119"
[tool.isort]
profile = 'black'
line_length = 119
multi_line_output = 3
include_trailing_comma = true
skip_glob = ["pnds_db/metabase/*"]
[tool.black]
line-length = 119
target-version = ['py310']
[[tool.mypy.overrides]]
module = [
"psycopg",
"psycopg2"
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"