-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (55 loc) · 1.82 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
[project]
name = "xlandsat"
description = "Analyze Landsat remote sensing images using xarray"
dynamic = ["version"]
authors = [
{name="Leonardo Uieda", email="leo@uieda.com"},
]
readme = "README.md"
license = {text = "MIT License"}
keywords = ["xarray", "remote sensing", "satellite", "landsat"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.23",
"scipy>=1.9",
"xarray>=2022.6.0",
"scikit-image>=0.20",
"pooch>=1.3.0",
"pyproj>=3.3.0",
"ipyleaflet>=0.18",
"matplotlib>=3.5",
]
[project.urls]
"Documentation" = "https://www.compgeolab.org/xlandsat"
"Changelog" = "https://www.compgeolab.org/xlandsat/latest/changes.html"
"Bug Tracker" = "https://github.com/compgeolab/xlandsat/issues"
"Source Code" = "https://github.com/compgeolab/xlandsat"
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
write_to = "xlandsat/_version_generated.py"
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
# Make sure isort and Black are compatible
[tool.isort]
profile = "black"
multi_line_output = 3