-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 2.11 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "blacksheep"
dynamic = ["version"]
description = "Fast web framework for Python asyncio"
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["blacksheep", "web framework", "asyncio"]
dependencies = [
"certifi>=2025.4.26",
"guardpost>=1.0.4",
"rodi~=2.0.8",
"essentials>=1.1.8,<2.0",
"essentials-openapi>=1.2.0,<2.0",
"itsdangerous~=2.2.0",
"h11>=0.14.0,<1.0.0",
"h2>=4.0.0,<5.0.0",
"httptools>=0.7.1; platform_python_implementation != 'PyPy'",
"async-timeout>=4.0.0; python_version < '3.11'",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["blacksheep*"]
[tool.setuptools.dynamic]
version = { attr = "blacksheep.__version__" }
[project.optional-dependencies]
jinja = ["Jinja2~=3.1.6"]
xml = ["defusedxml>=0.7.1"]
full = [
"cryptography>=45.0.2,<47.0.0",
"PyJWT>=2.10.1,<2.13.0",
"websockets~=15.0.1",
"Jinja2~=3.1.6",
"defusedxml>=0.7.1",
]
[project.urls]
Homepage = "https://github.com/Neoteroi/BlackSheep"
Documentation = "https://www.neoteroi.dev/blacksheep/"
Issues = "https://github.com/Neoteroi/BlackSheep/issues"
Repository = "https://github.com/Neoteroi/BlackSheep"
Changelog = "https://github.com/Neoteroi/BlackSheep/blob/main/CHANGELOG.md"
[tool.setuptools]
include-package-data = true