-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (70 loc) · 2.02 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "pyview-web"
packages = [
{ include = "pyview" },
]
version = "0.2.0"
description = "LiveView in Python"
authors = ["Larry Ogrodnek <[email protected]>"]
license = "MIT"
readme = "readme.md"
homepage = "https://pyview.rocks"
repository = "https://github.com/ogrodnek/pyview"
keywords = ["web", "api", "LiveView"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: Pydantic",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
starlette = "0.40.0"
uvicorn = "0.30.6"
wsproto = "1.2.0"
APScheduler = "3.9.1.post1"
psutil = "^5.9.4"
markupsafe = "^2.1.2"
itsdangerous = "^2.1.2"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "24.3.0"
pyright = "1.1.380"
aiohttp = "^3.8.4"
[tool.poetry.group.profiling.dependencies]
scalene = "^1.5.19"
memray = "^1.6.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
exclude = [
".venv",
"examples",
"examples/.venv",
"**/vendor",
"**/node_modules",
"**/__pycache__",
]