-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
74 lines (65 loc) · 1.43 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
[project]
name = "r8"
description = "A ctf-style autograding system."
readme = "README.md"
requires-python = ">=3.9"
license = { text="MIT" }
authors = [{name = "Maximilian Hils", email = "[email protected]"}]
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"click",
"texttable",
"argon2_cffi",
"aiohttp",
"aiohttp_jinja2",
"itsdangerous",
"blinker",
"setuptools",
]
[project.optional-dependencies]
extra = [
"wcwidth",
"aiohttp[speedups]",
]
[tool.uv]
dev-dependencies = [
"sphinx",
"sphinxcontrib-trio",
"pytest",
"ruff",
"tox",
"tox-uv",
"mypy",
]
[project.scripts]
r8 = "r8.cli:main"
[project.entry-points."r8.challenges"]
dir = "r8.builtin_challenges"
[project.urls]
Homepage = "https://github.com/mhils/r8"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "r8.__version__"}
[tool.setuptools.packages.find]
include = ["r8*"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = lint, py
toxworkdir = {env:TOX_WORK_DIR:.tox}
runner = uv-venv-lock-runner
[testenv]
commands =
pytest
"""