-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
78 lines (71 loc) · 1.68 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
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "pyopensky"
version = "2.12"
description = "A Python interface for OpenSky database"
authors = [
{ name = "Xavier Olive", email = "[email protected]" },
{ name = "Junzi Sun", email = "[email protected]" },
]
license = "MIT"
readme = "readme.md"
requires-python = ">=3.9"
dependencies = [
"appdirs >= 1.4.4",
"httpx >= 0.27.2",
"minio >= 7.2.8",
"pandas >= 2.2.2",
"pyarrow >= 17.0.0",
"pyjwt >= 2.9.0",
"tqdm >= 4.66.5",
"trino[sqlalchemy] >= 0.329.0",
"typing-extensions >= 4.12.2",
"tzdata>=2024.2",
]
[project.urls]
Repository = "https://github.com/open-aviation/pyopensky/"
[project.optional-dependencies]
cartes = ["cartes>=0.8.1"]
decoding = ["pymodes>=2.18", "rs1090>=0.3.8"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pre-commit >= 3.8.0",
"mypy >= 1.11.2",
"ruff >= 0.6.3",
"pytest >= 8.3.2",
"ipykernel >= 6.29.5",
"sphinx >= 7.4.7; python_version>'3.11'",
"sphinx-design >= 0.6.1; python_version>'3.11'",
"sphinx-rtd-theme >= 2.0.0; python_version>'3.11'",
"sphinx-autodoc-typehints >= 2.3.0; python_version>'3.11'",
]
[tool.ruff]
lint.select = [
"E",
"W", # pycodestyle
"F", # pyflakes
"I", # isort
"NPY", # numpy
# "PD", # pandas
"DTZ", # flake8-datetimez
"RUF",
]
line-length = 80
target-version = "py39"
[tool.ruff.lint.isort]
known-first-party = ["numpy", "pandas"]
[tool.mypy]
python_version = "3.9"
platform = "posix"
color_output = true
pretty = true
show_column_numbers = true
strict = true
check_untyped_defs = true
ignore_missing_imports = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true