-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (66 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
81 lines (66 loc) · 1.47 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "connections"
version = "0.1.0"
description = "flight to connections map"
authors = ["Lucas Messenger <1335960+layertwo@users.noreply.github.com>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.scripts]
connections = "connections.main:cli"
[tool.poetry.dependencies]
python = "^3.11"
airports-py = "3.1.0"
plotly = "6.7.0"
geojson = "3.2.0"
click = "8.3.2"
setuptools = "^82.0.0"
kaleido = "1.2.0"
jinja2 = "^3.1.6"
[tool.poetry.group.dev.dependencies]
isort = "8.0.1"
black = "26.3.1"
pytest = "9.0.3"
pytest-mock = "3.15.1"
pytest-cov = "7.1.0"
hypothesis = ">=6.98.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 100
[tool.isort]
known_first_party = "connections"
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
combine_as_imports = false
skip = [".git", "venv"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--verbose",
"--strict-markers",
"--strict-config",
"--cov=src/connections",
"--cov-report=term-missing",
"--cov-report=term",
"--cov-report=html",
"--cov-report=xml",
"--cov-fail-under=80"
]
[tool.coverage.run]
source = ["src"]
omit = [
"*/tests/*",
"*/test_*",
]
branch = true
parallel = true
relative_files = true