-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (86 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
91 lines (86 loc) · 2.5 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "duckframework"
version = "1.0.2"
description = "Duck is a powerful, open-source, full-fledged Python-based web server, framework, and reverse proxy designed for building modern, customizable web applications — from small sites to large-scale platforms."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE", "AUTHORS.md"]
authors = [
]
maintainers = [
]
dependencies = [
"Django>=5.1.5",
"Jinja2>=3.1.5",
"watchdog>=4.0.1",
"requests>=2.31.0",
"h2>=4.2.0",
"msgpack>=1.1.1",
"diskcache",
"colorama",
"tzdata",
"click",
"asgiref>=3.8.1",
"psutil>=7.0.0",
"rich>=14.1.0",
"setproctitle",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"Python",
"web framework",
"web server",
"reverse proxy",
"HTTP/2",
"WSGI",
"ASGI",
"Django integration",
"Flask",
"Tornado",
"FastAPI",
"microservices",
"middleware",
"high-performance",
"async",
"Duck framework",
"routing",
"load balancing",
"HTTP proxy",
"web application"
]
[project.urls]
Homepage = "https://duckframework.xyz"
Source = "https://github.com/duckframework/duck"
Issues = "https://github.com/duckframework/duck/issues"
Funding = "https://duckframework.xyz/contribute"
Documentation = "https://docs.duckframework.xyz"
[project.entry-points.console_scripts]
duck = "duck.__main__:cli"
[tool.setuptools.dynamic]
version = {attr = "duck.__version__"}
[tool.setuptools.packages.find]
include = ["duck*"]
where = ["."]