-
-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.47 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
[tool.pdm]
package-dir = "src"
[tool.uv]
dev-dependencies = [
"pytest-xdist>=3.6.1",
"pytest>=8.3.3",
"ruff>=0.6.7",
"sphinx>=8.0.2",
]
[project]
name = "webassets"
description = "Media asset management for Python, with glue code for various web frameworks"
readme = "README.rst"
authors = [
{name = "Michael Elsdoerfer", email = "michael@elsdoerfer.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
license = {text = "BSD"}
requires-python = ">=3.10"
dependencies = [
"pyyaml>=6.0.2",
"zope-dottedname>=6.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "http://github.com/miracle2k/webassets/"
[project.scripts]
webassets = "webassets.script:run"
[project.optional-dependencies]
jinja2 = [
"jinja2>=3.1.4",
]
cssutils = [
"cssutils>=2.11.1",
]
closure = [
"closure>=20191111",
]
slimit = [
"slimit>=0.8.1",
]
ply = [
"ply>=3.11",
]
sass = [
"libsass>=0.23.0",
]
rcssmin = [
"rcssmin>=1.1.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/webassets"]
[tool.hatch.version]
path = "src/webassets/__init__.py"