-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (83 loc) · 1.33 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
[tool.poetry]
name = "pale-blue-dot-challenge"
version = "0.1.0"
description = ""
authors = ["cristianrubioa <[email protected]>"]
license = "LICENSE"
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.scripts]
oibur = "src.main:app"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.1"
autoflake = "^2.2.1"
pydantic = "^2.5.3"
pydantic-settings = "^2.1.0"
rasterio = "^1.3.9"
geopandas = "^0.14.2"
gdal = "3.4.1"
matplotlib = "^3.8.2"
typer = "^0.9.0"
wheel = "^0.42.0"
jupyter = "^1.0.0"
ipykernel = "^6.29.0"
pillow = "^10.2.0"
scipy = "^1.12.0"
opencv-python = "^4.9.0.80"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
simplification = ["simplification"]
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
black = "^23.11.0"
pep8 = "^1.7.1"
pytest = "^7.4.3"
isort = "^5.12.0"
ruff = "^0.1.7"
[tool.isort]
force_single_line = true
[tool.ruff]
target-version = "py312"
line-length = 123
ignore = ["RUF001", "RUF012", "PLC1901", "COM812"]
select = [
"E",
"F",
"W",
"C4",
"RUF",
"UP",
"B",
"EM",
"RET",
"FLY",
"SIM",
"PERF",
"ICN",
"YTT",
"ASYNC",
"TID",
"Q",
"PYI",
"FA",
"T10",
"PLC",
"PLE",
"ISC",
"G",
"INP",
"PIE",
"Q",
"RSE",
"TCH",
"INT",
"COM",
"ICN",
"SLOT",
"ASYNC",
"AIR",
"YTT",
]