-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.13 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
[project]
name = "ref-utils"
version = "0.1.9"
description = "A package containing various utility functions for remote-exercise-framework submission process"
authors = [
{name = "Nils Bars", email = "[email protected]"},
{name = "Moritz Schloegel", email = "[email protected]"},
]
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"colorama>=0.4.3",
"requests>=2.28",
"itsdangerous>=2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["ref_utils"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "basic"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.8.0",
"pyright>=1.1.0",
]
[tool.uv]
cache-dir = ".uv-cache"