-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 937 Bytes
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
[project]
name = "pygrader"
version = "1.8.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pylint>=4.0.2",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"types-requests>=2.32.4.20250913",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# List only the directory/package you want to include
packages = ["grader", "grader.checks", "grader.utils"]
[tool.complexipy]
paths = ["grader", "tests", "desktop", "web"]
max-complexity-allowed = 15
quiet = false
sort = "asc"
details = "low"
[tool.complexipy.output]
json = true
[dependency-groups]
dev = [
"complexipy>=4.2.0",
"coverage>=7.11.3",
"flake8>=7.3.0",
"mypy>=1.18.2",
"myst-parser>=4.0.1",
"sphinx>=8.1.3",
"sphinx-autodoc2>=0.4.2",
"sphinx-rtd-theme>=3.0.2",
"sphinx-rtd-theme-ext-color-contrast>=0.3.2",
]