generated from ioos/ioos-python-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
70 lines (60 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "xpublish_wms"
authors = [{ name = "Matthew Iannucci", email = "[email protected]" }]
description = "WMS plugin for xpublish"
readme = "README.md"
requires-python = ">=3.10,<3.13"
keywords = ["xarray", "xpublish", "wms"]
license = { file = "LICENSE.txt" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://github.com/xpublish-community/xpublish-wms"
[project.entry-points."xpublish.plugin"]
cf_wms = "xpublish_wms.plugin:CfWmsPlugin"
[tool.setuptools]
packages = ["xpublish_wms"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools_scm]
write_to = "xpublish_wms/_version.py"
[tool.check-manifest]
ignore = [
"*.yml",
"*.yaml",
".coveragerc",
"docs",
"docs/*",
"*.enc",
"notebooks",
"notebooks/*",
"tests",
"tests/*",
"xpublish_wms/_version.py",
]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 25
exclude = ["setup.py", "docs", "tests"]
verbose = 1
quiet = false
color = true