-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.63 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
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
[project]
name = "tutor-contrib-codejail"
version = "21.0.1"
description = "Codejail plugin for Tutor"
readme = "README.md"
license-files = ["LICENSE"]
authors = [
{ name = "eduNEXT" }
]
requires-python = ">=3.10"
dependencies = [
"tutor~=21.0"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
"Code" = "https://github.com/edunext/tutor-contrib-codejail"
"Issue tracker" = "https://github.com/edunext/tutor-contrib-codejail/issues"
"Homepage" = "https://github.com/github/tutor-contrib-codejail"
[project.entry-points."tutor.plugin.v1"]
codejail = "tutorcodejail.plugin"
[tool.uv.build-backend]
module-root = "."
module-name = "tutorcodejail"
[build-system]
requires = ["uv_build>=0.9.5,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff",
"scriv>=1.8.0",
"ty>=0.0.34",
]
[tool.ruff]
line-length = 120
indent-width = 4
lint.select = [
"E4",
"E7",
"E9",
"F",
"I",
"UP",
]
extend-exclude = [
"tutorcodejail/templates/**"
]
[tool.scriv]
version = "literal: pyproject.toml: project.version"
categories = "Added, Changed, Fixed, Removed"
format = "md"
md_header_level = 2
new_fragment_template = "file: changelog.d/scriv/new_fragment.md.j2"
entry_title_template = "file: changelog.d/scriv/entry_title.md.j2"
[tool.ty.src]
exclude = ["tutorcodejail/templates"]