-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (51 loc) · 1.28 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
[tool.poetry]
name = "dbdiag"
version = "0.0.0"
description = "dbdiag"
authors = ["Alex Miller <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/thisismiller/dbdiag"
repository = "https://github.com/thisismiller/dbdiag"
documentation = "https://github.com/thisismiller/dbdiag/README.md"
packages = [
{ include = "dbdiag" },
]
classifiers = [
"Development Status :: 3 - Alpha",
]
[tool.poetry.urls]
Changelog = "https://github.com/thisismiller/dbdiag/releases"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = ">=6.2.5"
[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"
[tool.poetry.scripts]
dbdiag = "dbdiag.cli:main"
dbdiag-spans = "dbdiag.cli:main_spans"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["src", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"