-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
78 lines (69 loc) · 1.83 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
[project]
name = "cbers4asat"
version = "0.7.3"
description = "Biblioteca Python para realizar a busca e processamento de imagens dos satélites CBERS-04A e AMAZONIA-1"
authors = [
{ name = "Gabriel Russo", email = "gabrielrusso@protonmail.com" }]
license = { file = "LICENSE" }
keywords = ["cbers", "cbers4a", "cbers-04a", "amazonia-1", "remote sensing", "geoprocessing"]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS"
]
dependencies = [
"geopandas>=0.9",
"requests>=2.25.1",
"pandas>=1.3.5"
]
[project.optional-dependencies]
dev = [
"hatch>=1.6.3"
]
tools = [
"rasterio>=1.3.6",
"numpy>=1.24.2",
"scikit-image>=0.20.0",
"geojson>=3.0.1",
"geomet>=1.0.0"
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.11.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/cbers4asat"]
[tool.hatch.build]
exclude = [
"tests/",
".github/",
"cli/",
".flake8",
"tox.ini"
]
[tool.hatch.envs.default]
dependencies = [
"tox>=4.4.4",
"black>=23.1"
]
[tool.hatch.envs.default.scripts]
format = "black src/cbers4asat"
test = "tox"
[tool.hatch.envs.docs]
dependencies = [
"mkdocs>=1.4.2",
"mkdocstrings>=0.20.0",
"mkdocstrings-python>=0.8.3"
]
[tool.hatch.envs.docs.scripts]
serve = "mkdocs serve"
build = "mkdocs build --clean --strict"
[project.urls]
"Homepage" = "https://cbers4asat.readthedocs.io/pt_BR/latest"
"Bug Tracker" = "https://github.com/gabriel-russo/cbers4asat/issues"
"Repository" = "https://github.com/gabriel-russo/cbers4asat.git"