-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.41 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
[tool.poetry]
name = "zen3geo"
version = "0.2.0"
description = "The 🌏 data science library you've been waiting for~"
authors = ["Wei Ji <23487320+weiji14@users.noreply.github.com>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
# Required
python = "^3.8"
rioxarray = ">=0.10.0"
torchdata = ">=0.4.0"
# Optional
pyogrio = {version = ">=0.4.0", extras = ["geopandas"], optional = true}
xbatcher = {version = ">=0.1.0", optional = true}
# Docs
jupyter-book = {version="*", optional=true}
planetary-computer = {version="*", optional=true}
pystac = {version="*", optional=true}
[tool.poetry.group.dev.dependencies]
black = "*"
pytest = "*"
[tool.poetry.extras]
docs = [
"jupyter-book",
"planetary-computer",
"pystac",
"xbatcher"
]
raster = ["xbatcher"]
vector = ["pyogrio"]
[tool.poetry-dynamic-versioning]
bump = true
enable = true
metadata = true
style = "pep440"
[build-system]
requires = ["poetry>=1.2.0b3", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"