-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 758 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 loc) · 758 Bytes
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
[project]
name = "rinha-2025-python"
version = "0.0.1"
description = "Default template for PDM package"
authors = [
{name = "Lucas Santana", email = "lsfratel@gmail.com"},
]
dependencies = [
"gevent>=25.5.1",
"requests>=2.32.4",
"bjoern>=3.2.2",
"orjson>=3.11.1",
"msgpack>=1.1.1",
"redis[hiredis]>=6.2.0",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
dev.cmd = "gunicorn -b :9999 --reload --access-logfile - -k gevent backend.wsgi:create_app()"
dev.env_file = ".env"
worker.cmd = "python -m worker"
worker.env_file = ".env"
clean = "find . -type d -name __pycache__ -exec rm -rf {} +"
[dependency-groups]
dev = [
"gunicorn>=23.0.0",
]