-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.8 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
[project]
name = "sse-relay-server"
version = "1.0.14"
description = "An SSE Relay Service: Perfect for Adding Real-Time Features to Your Django Project Without Introducing ASGI or Async Code."
authors = [{ name = "Tobi DEGNON", email = "[email protected]" }]
dependencies = [
"starlette>=0.31.1",
"python-dotenv>=1.0.0",
"uvicorn[standard]>=0.23.2",
"structlog>=23.2.0",
"rich>=13.7.0",
]
readme = "README.md"
requires-python = ">= 3.8"
license = { file = "LICENSE" }
keywords = ["python", "django", "postgresql", "redis", "realtime"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Natural Language :: English",
]
[project.urls]
Homepage = "https://github.com/Tobi-De/sse_relay_server"
Documentation = "https://github.com/Tobi-De/sse_relay_server"
Repository = "https://github.com/Tobi-De/sse_relay_server"
[project.scripts]
sse-relay-server = "sse_relay_server.main:main"
[project.optional-dependencies]
redis = [
"hiredis>=2.2.3",
"redis>=5.0.1",
]
postgres = [
"psycopg[binary]>=3.1.14",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"black>=23.9.1",
"pre-commit>=3.5.0",
]
[tool.hatch.metadata]
allow-direct-references = true