-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
81 lines (74 loc) · 1.67 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
[project]
name = "geographer"
version = "1.0.0"
description = "Build object-centric remote sensing computer vision datasets"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Rustam Antia", email = "[email protected]"}
]
keywords = ["remote sensing", "computer vision", "satellite imagery", "GIS", "machine learning"]
classifiers = [
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.9"
dependencies = [
"eodag",
"eval_type_backport",
"fiona",
"geojson",
"geopandas",
"GitPython",
"ipywidgets",
"networkx",
"numpy",
"packaging",
"pandas",
"pydantic >= 2.0",
"pyproj",
"rasterio",
"requests",
"rioxarray",
"rtree",
"scipy",
"sentinelsat",
"Shapely",
"tqdm",
"urllib3"
]
[project.optional-dependencies]
dev = [
"ruff==0.7.4",
"build",
"docformatter",
"ipykernel",
"pytest"
]
docs = [
"furo",
"autodoc_pydantic",
"docutils",
"pandoc",
"Sphinx",
"sphinx-autodoc-typehints",
"nbsphinx",
"nbsphinx-link"
]
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {include = ["geographer*"], exclude = ["docs*", "tests*", "notebooks*"]}}
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')"
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-ignore = ["E266"] # allow multiple leading '#' for block comments
per-file-ignores = { "__init__.py" = ["F401", "D104"] }
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true