-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.35 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "doors_stores"
version = "0.1.7"
authors = [
{ name="Tonio Fincke" },
]
description = """\
A collection of stores to access DOORS data, based on the xcube store framework.
"""
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.6",
"lxml>=4.5",
"nest-asyncio>=1.3",
"numpy>=2",
"pydap>=3.4",
"xcube-core>=1.4.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov"
]
[project.entry-points."xcube_plugins"]
doors_stores = "doors_stores.plugin:init_plugin"
[project.urls]
"Homepage" = "https://github.com/bcdev/doors-stores"
"Changelog" = "https://github.com/bcdev/doors-stores/CHANGES.md"
"Release notes" = "https://github.com/bcdev/doors-stores/releases"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
doors_stores = ["data/*"]
[tool.setuptools.packages.find]
exclude = [
"test*",
"examples*"
]