forked from stac-utils/xpystac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 913 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "xpystac"
authors = [
{name = "Julia Signell", email = "[email protected]"}
]
classifiers = [ "License :: OSI Approved :: MIT License",]
dependencies = [
"xarray",
"pystac>=1.0.1",
]
requires-python = ">=3.8"
description = "Extend xarray.open_dataset to accept pystac objects"
license = {text = "MIT"}
readme = "README.md"
dynamic = ["version"]
[project.urls]
Home = "https://github.com/stac-utils/xpystac"
Repository = "https://github.com/stac-utils/xpystac"
[project.optional-dependencies]
dev = [
"pytest",
"pre-commit",
]
[project.entry-points."xarray.backends"]
stac = "xpystac.xarray_plugin:STACBackend"
[tool.setuptools.packages.find]
include = [
"xpystac",
]
[tool.ruff]
line-length = 88
select = ["E", "F", "W", "I"]