-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (95 loc) · 2.91 KB
/
pyproject.toml
File metadata and controls
110 lines (95 loc) · 2.91 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Generated with zope.meta (https://zopemeta.readthedocs.io/) from:
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/pure-python
[build-system]
requires = [
"setuptools >= 78.1.1,< 81",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "fanstatic"
version = "1.8.dev0"
description = "Flexible static resources for web applications"
license = "BSD-3-Clause"
classifiers = [
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"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",
"Development Status :: 5 - Production/Stable",
]
dynamic = ["readme"]
requires-python = ">=3.10"
authors = [
{name = "Fanstatic Developers",email = "zope-dev@zope.dev"},
]
maintainers = [
{name = "Plone Foundation and contributors",email = "zope-dev@zope.dev"},
]
dependencies = [
"WebOb >= 1.2",
"packaging",
"setuptools",
]
[project.scripts]
fanstatic-compile = "fanstatic.compiler:compile_resources"
[project.entry-points."paste.filter_app_factory"]
fanstatic = "fanstatic:make_fanstatic"
injector = "fanstatic:make_injector"
[project.entry-points."paste.app_factory"]
serf = "fanstatic:make_serf"
publisher = "fanstatic:make_publisher"
[project.entry-points."fanstatic.injectors"]
topbottom = "fanstatic.injector:TopBottomInjector"
[project.entry-points."fanstatic.compilers"]
coffee = "fanstatic.compiler:COFFEE_COMPILER"
less = "fanstatic.compiler:LESS_COMPILER"
sass = "fanstatic.compiler:SASS_COMPILER"
[project.entry-points."fanstatic.minifiers"]
cssmin = "fanstatic.compiler:CSSMIN_MINIFIER"
jsmin = "fanstatic.compiler:JSMIN_MINIFIER"
closure = "fanstatic.compiler:CLOSURE_MINIFIER"
[project.optional-dependencies]
closure = ["closure"]
cssmin = ["cssmin"]
jsmin = ["jsmin"]
test = [
"closure",
"cssmin",
"jsmin",
"pytest >= 2.3",
]
docs = ["Sphinx"]
[project.urls]
Documentation = "https://www.fanstatic.org/"
Source = "https://github.com/zopefoundation/fanstatic"
Issues = "https://github.com/zopefoundation/fanstatic/issues"
Changelog = "https://raw.githubusercontent.com/zopefoundation/fanstatic/master/CHANGES.rst"
[tool.coverage.run]
branch = true
source = ["fanstatic"]
omit = ["*/SomePackage/src/somepackage/*"]
[tool.coverage.report]
fail_under = 94
precision = 2
ignore_errors = true
show_missing = true
exclude_lines = [
"pragma: no cover",
"pragma: nocover",
"except ImportError:",
"raise NotImplementedError",
"if __name__ == '__main__':",
"self.fail",
"raise AssertionError",
"raise unittest.Skip",
]
[tool.coverage.html]
directory = "parts/htmlcov"
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CHANGES.rst"]}