-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (51 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
62 lines (51 loc) · 1.03 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
[project]
name = "flaz"
version = "0.1.0"
description = "FLAZ — Biblioteca de ETL Espacial 3D+t para o FavelaVIZ"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Fernando Gomes", email = "feromes@gmail.com" }
]
requires-python = ">=3.10"
dependencies = [
# --- núcleo numérico ---
"numpy>=1.26",
"pyarrow>=16.0.0",
"scipy>=1.11",
# --- geoespacial ---
"shapely>=2.0.0",
"pyproj>=3.6",
"geopandas>=0.14",
"rasterio>=1.3",
# --- LiDAR ---
"laspy[lazrs]>=2.5",
# --- utilidades ---
"requests>=2.32",
"rich>=13.0",
"typer>=0.20",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"isort",
"mypy",
"ruff",
]
vielas = [
"scikit-image>=0.21",
]
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
pythonpath = ["src"]
[project.scripts]
flaz = "flaz.cli.main:app"
[tool.setuptools.packages.find]
where = ["src"]
include = ["flaz*"]
[tool.setuptools.package-data]
"flaz.data" = ["*"]