-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.12 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
47
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tcg-web"
version = "0.1.0"
description = "Desktop tool for scraping coding problems and packaging testcases"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Proprietary" }
authors = [{ name = "Test Case Generator Team" }]
dependencies = [
"httpx>=0.25,<0.28",
"selectolax>=0.3.17,<0.4.0",
"beautifulsoup4>=4.12,<4.14",
"tenacity>=8.2,<9.0",
"rich>=13.6,<14.0",
"python-slugify>=8.0,<9.0",
"aiofiles>=23.2,<24.0",
"pydantic>=2.6,<3.0",
"fastapi>=0.115,<0.116",
"uvicorn[standard]>=0.30,<0.32",
"jinja2>=3.1,<4.0",
"python-multipart>=0.0.9,<0.0.11"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9.0",
"coverage>=7.6,<8.0",
"ruff>=0.6,<0.7"
]
## GUI scripts removed; web entry point defined below
[project.scripts]
tcg-web = "webapp.main:run"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools]
packages = { find = { where = ["src"], include = ["app*", "webapp*"], exclude = ["tests*"] } }
[tool.pytest.ini_options]
pythonpath = ["src"]