forked from voltdatalab/crossfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.2 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
[tool.poetry]
name = "crossfire"
version = "1.1.0"
description = "crossfire: Download spatial data sets from crossfire project"
authors = ["Felipe Barros <[email protected]>"]
readme = "README.md"
homepage = "https://fogocruzado.org.br/"
repository = "https://github.com/felipesbarros/crossfire"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
]
exclude = ["env-example"]
[tool.poetry.dependencies]
python = "^3.9,<3.13"
geopandas = { version = "^0.13.2", optional = true }
httpx = "^0.25.0"
nest-asyncio = "^1.6.0"
pandas = { version = "^2.1.1", optional = true }
python-decouple = "^3.5"
tqdm = "^4.66.1"
[tool.poetry.extras]
df = ["pandas"]
geodf = ["geopandas", "pandas"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
pytest-ruff = "^0.2.1"
[tool.pytest.ini_options]
addopts = "--ruff --ruff-format"
[tool.ruff]
line-length = 80
extend-select = ["I"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"