-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.02 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
[project]
name = "python-sandbox"
version = "0.1.0"
description = "A standalone service that executes valid python scripts."
authors = [{ name = "Nicolas Hill", email = "nrhill1@gmail.com" }]
readme = "README.md"
requires-python = "==3.11.5"
dependencies = [
"autopep8==2.3.2",
"blinker==1.9.0",
"certifi==2024.8.30",
"cffi==1.17.1",
"click==8.2.1",
"cryptography==45.0.4",
"distlib==0.3.9",
"filelock==3.17.0",
"flask==3.1.1",
"fpdf==1.7.2",
"itsdangerous==2.2.0",
"jinja2==3.1.6",
"lxml==5.4.0",
"markupsafe==3.0.2",
"numpy==2.3.0",
"pandas==2.3.0",
"platformdirs==4.3.6",
"pycodestyle==2.14.0",
"pycparser==2.22",
"python-dateutil==2.9.0.post0",
"python-docx==1.2.0",
"pytz==2025.2",
"six==1.17.0",
"typing-extensions==4.14.0",
"tzdata==2025.2",
"virtualenv==20.29.2",
"werkzeug==3.1.3",
]
[project.scripts]
main = "app"
[tool.uv]
package = false
[build-system]
requires = ["uv_build>=0.8.14,<0.9.0"]
build-backend = "uv_build"