-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "simplestac"
dynamic = ["version"]
authors = [
{name="Florian de Boissieu", email="[email protected]"},
{name="Remi Cresson", email="[email protected]"},
]
description = "STAC tools to simplify STAC use"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPLv3"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"tqdm",
"path",
"pystac",
"rioxarray",
"stac_static@git+https://github.com/jsignell/stac-static",
"stackstac",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
notebook=[
"ipykernels",
"planetary-computer",
"xpystac",
]
[project.urls]
Homepage = "https://forgemia.inra.fr/umr-tetis/stac/simplestac"
Repository = "https://forgemia.inra.fr/umr-tetis/stac/simplestac"
Issues = "https://forgemia.inra.fr/umr-tetis/stac/simplestac/-/issues"
[tool.setuptools.packages.find]
include = [
"simplestac",
]