-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.69 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jinja2_fragments"
version = "1.8.0"
description = "Render Jinja2 template block as HTML page fragments on Python web frameworks."
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing :: Markup :: HTML",
]
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"jinja2 >=3.1.0,<4.0.0"
]
[project.urls]
Homepage = "https://github.com/sponsfreixes/jinja2-fragments"
"Source Code" = "https://github.com/sponsfreixes/jinja2-fragments"
"Issue Tracker" = "https://github.com/sponsfreixes/jinja2-fragments/issues"
"Changes" = "https://github.com/sponsfreixes/jinja2-fragments/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pre-commit",
]
tests = [
"quart >=0.18.0",
"flask >=2.1.0",
"fastapi >= 0.108.0",
"sanic",
"sanic_ext",
"sanic_testing",
"starlette[full] >= 0.29.0",
"pytest",
"pytest_asyncio",
"litestar[standard]",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = {find = {where = ["src"]}}
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
jinja2_fragments = ["py.typed"]
[tool.ruff]
select = ["E", "F", "I"]
ignore = ["E203"]