-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
74 lines (69 loc) · 1.69 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
[project]
name = "wlts"
description = "."
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Brazil Data Cube Team", email = "bdc.team@inpe.br"},
]
keywords = [
"lulc"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License version 3 License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
version="1.2.0"
dependencies = [
"Click>=7.0",
"Jinja2>=2.11.1",
"descartes>=1.1.0",
"shapely>=1.7.1",
"pandas>=1.1",
"geopandas>=0.8.2",
"plotly==5.5.0",
"rich>=13.9.2",
"lccs @ git+https://github.com/brazil-data-cube/lccs.py@b-1.0",
"rich>=10.0.0",
"httpx>=0.19.0",
]
# Extras Dependencies
[project.optional-dependencies]
dev = ["pre-commit"]
docs = [
"Sphinx>=7.0",
"sphinx_rtd_theme",
"sphinx-copybutton",
"sphinx-tabs",
]
tests = [
"coverage>=6.4",
"coveralls>=3.3",
"pytest>=7.4",
"pytest-cov>=4.1",
"pytest-pep8>=1.0",
"pydocstyle>=4.0",
"isort>4.3",
"check-manifest>=0.40",
]
all = ["wlts[docs,tests]"]
## End extras dependencies
[build-system]
requires = ["setuptools>=67.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["wlts*"]
exclude = ["tests*"]
namespaces = false
[tool.setuptools.package-data]
"wlts" = ["py.typed"]
[project.scripts]
wlts-cli = "wlts.cli:cli"