-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (32 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
41 lines (32 loc) · 837 Bytes
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
[tool.poetry]
name = "db-verifier"
version = "0.1.0"
description = "Linter for PostgreSQL DB structure: analysis, verification, optimization."
authors = ["Vasily Nikonov"]
readme = "README.md"
packages = [
{ include = "db_verifier" },
{ include = "db_verifier.sql" },
]
[tool.poetry.dependencies]
python = "^3.8"
psycopg = "^3.1.18"
tabulate = "^0.9.0"
argparse = "^1.4.0"
pydantic = "^2.6.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
environs = "^10.3.0"
pyflakes = "^3.2.0"
[tool.poetry.scripts]
db_verifier = 'db_verifier.run:run_db_verifier'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# https://black.readthedocs.io/en/stable/pyproject_toml.html
[tool.black]
required-version = "23.3.0"
target-version = ["py38"]
line-length = 120
[tool.isort]
profile = "black"