-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "webresource"
version = "2.0.1.dev0"
description = "A resource registry for web applications."
readme = {file = "README.rst", content-type = "text/x-rst"}
keywords = ["web", "resources", "dependencies", "javascript", "CSS"]
authors = [{name = "Conestack Constributors", email = "dev@conestack.org"}]
license = {text = "Simplified BSD"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[project.optional-dependencies]
docs = [
"Sphinx",
"sphinx_conestack_theme",
]
test = [
"coverage",
"pytest",
]
[project.urls]
Documentation = "https://webresource.readthedocs.io/"
ChangeLog = "https://github.com/conestack/webresource/blob/master/CHANGES.rst"
"Issue Tracker" = "https://github.com/conestack/webresource/issues"
"Source Code" = "https://github.com/conestack/webresource"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/x-rst"
fragments = [
{path = "README.rst"},
{text = "\n\n"},
{path = "CHANGES.rst"},
{text = "\n\n"},
{path = "LICENSE.rst"},
]
[tool.hatch.build.targets.sdist]
exclude = [
"/docs",
"/.github/",
"/Makefile",
"/mx.ini",
]
[tool.hatch.build.targets.wheel]
packages = ["webresource"]
[tool.ruff]
target-version = "py310"
[tool.ruff.format]
quote-style = "single"
[tool.isort]
py_version = 310
profile = "plone"
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_any_generics = false
[tool.zest-releaser]
create-wheel = true