-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
133 lines (119 loc) · 2.72 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "geospaitial-lab-aviary"
description = "Composable inference and postprocessing pipeline for remote sensing data"
readme = "README.md"
authors = [
{name = "Marius Maryniak", email = "marius.maryniak@w-hs.de"},
]
maintainers = [
{name = "Marius Maryniak", email = "marius.maryniak@w-hs.de"},
{name = "Alexander Roß", email = "alexander.ross@w-hs.de"},
]
license = {text = "GPL-3.0"}
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
]
dynamic = [
"dependencies",
"version",
]
[project.urls]
Homepage = "https://github.com/geospaitial-lab/aviary"
Documentation = "https://geospaitial-lab.github.io/aviary"
[project.scripts]
aviary = "aviary._cli.cli:app"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
version = {attr = "aviary.__version__"}
[tool.setuptools.packages]
find = {where = ["."], include = ["aviary*"]}
[tool.setuptools.package-data]
aviary = ["py.typed"]
[tool.coverage.run]
omit = [
"aviary/_cli/*",
]
[tool.coverage.report]
exclude_also = [
"def __repr__",
"def __str__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"class .*\\bProtocol\\):",
"@(abc\\.)?abstractmethod",
"@overload",
]
[tool.pytest.ini_options]
norecursedirs = [
"tests/_functional",
"tests/data",
"tests/geodata",
"tests/inference",
"tests/pipeline",
]
pythonpath = ["."]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D100",
"D104",
"D205",
"D212",
"D415",
"FBT001",
"FBT002",
"PLR0913",
"PT003",
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
multiline-quotes = "single"
[tool.ruff.lint.per-file-ignores]
"aviary/_cli/cli.py" = [
"T201",
]
"aviary/core/exceptions.py" = [
"D101",
]
"dev/scripts/*" = [
"T201",
]
"docs/*.ipynb" = [
"D103",
"T201",
]
"docs/how_to_guides/api/notebooks/how_to_use_the_bounding_box.ipynb" = [
"ARG005",
"E731",
]
"docs/how_to_guides/api/notebooks/how_to_use_the_process_area.ipynb" = [
"ARG005",
"E731",
]
"tests/*" = [
"D103",
"PLR2004",
"S101",
"SLF001",
]
[tool.ruff.lint.pydocstyle]
convention = "google"