forked from Kattis/problemtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.18 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
[build-system]
requires = ["setuptools >= 77.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "problemtools"
authors = [
{name = "Kattis AB", email = "contact@kattis.com"},
]
description = "Kattis Problem Tools"
readme = "README.md"
license = "MIT"
keywords = ["kattis", "problemtools", "icpc", "clics"]
requires-python = ">= 3.11"
dependencies = [
"colorlog",
"nh3",
"PyYAML",
"plasTeX>=3.0",
"pydantic>=2.11",
]
dynamic = [ "version" ]
[project.scripts]
verifyproblem = "problemtools.verifyproblem:main"
problem2html = "problemtools.problem2html:main"
problem2pdf = "problemtools.problem2pdf:main"
[project.urls]
Repository = "https://github.com/Kattis/problemtools"
Homepage = "https://www.kattis.com"
Documentation = "https://www.kattis.com/problem-package-format/"
Issues = "https://github.com/Kattis/problemtools/issues/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["problemtools", "problemtools.*"]
[tool.setuptools_scm]
version_file = "problemtools/_version.py"
local_scheme = "no-local-version"
[tool.ruff]
line-length = 130
exclude = [ "examples" ]
[tool.ruff.format]
quote-style = "single"