forked from DmitryBurnaev/starlette-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
83 lines (78 loc) · 2.48 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
81
82
83
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "starlette_web"
version = "0.1.10"
description = "Asynchronous web framework, based on Starlette and inspired by Django"
readme = "README.md"
authors = [
{name = "Sergey Sayamov", email = "[email protected]"},
{name = "Dmitry Burnaev", email = "[email protected]"},
]
license = { text = "MIT" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
]
dependencies = [
"anyio>=4.6.0,<4.7",
"starlette>=0.39.0,<1.0",
"webargs-starlette>=2.1,<2.2",
"python-multipart==0.0.10", # required by starlette dependencies
"uvicorn[standard]>=0.30.6,<0.31",
"sqlalchemy>=2.0.35,<2.1",
"alembic>=1.13.3,<1.14",
"Jinja2>=3.1,<3.2",
"httpx>=0.27.2,<0.28",
"python-dotenv>=0.21,<0.22",
"traceback-with-variables>=2.0.4,<2.1",
"aiosmtplib>=3.0.1,<3.1",
"filelock>=3.13.1,<3.14",
"marshmallow>=3.22.0,<3.23",
"chardet>=5.2.0,<5.3",
"PyJWT[crypto]>=2.9,<2.10",
"exceptiongroup>=1.2.2,<2.0",
]
[project.urls]
"Homepage" = "https://github.com/dolamroth/starlette-web"
"Issues" = "https://github.com/dolamroth/starlette-web/issues"
[project.scripts]
starlette-web-admin = "starlette_web.common.management.admin_util:main"
[tool.setuptools.packages.find]
exclude = ["starlette_web.tests*", "venv*"]
[project.optional-dependencies]
apispec = [
"apispec>=6.6.1,<6.7",
"pyyaml>=6.0.1,<6.1",
"openapi-spec-validator>=0.7.1,<0.8",
]
admin = ["starlette-admin>=0.11.2,<0.12"]
mqtt = ["gmqtt>=0.6.13,<0.7"]
postgres = ["asyncpg>=0.29,<0.30"]
redis = ["redis>=5.0.8,<5.1"]
scheduler = [
"croniter>=2.0.1,<2.1",
"py-win-task-scheduler==0.2.1; sys_platform == 'win32'",
]
ssh = ["asyncssh>=2.14.2,<2.15"]
deploy = ["gunicorn>=23.0.0,<24.0"]
develop = ["black~=22.10.0"]
testing = [
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"coverage>=6.2",
"psycopg2-binary>=2.9",
"requests>=2.28",
"flake8>=4.0",
]
all = ["starlette-web[apispec,admin,auth,mqtt,postgres,redis,scheduler,deploy,develop,testing]"]
full = ["starlette-web[all]"]