-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
77 lines (68 loc) · 1.78 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
75
76
77
[project]
name = "judge0"
version = "0.1.0.dev0"
description = "The official Python SDK for Judge0."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Judge0", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["requests>=2.28.0,<3.0.0", "pydantic>=2.0.0,<3.0.0"]
[build-system]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/judge0/judge0-python"
Repository = "https://github.com/judge0/judge0-python.git"
Issues = "https://github.com/judge0/judge0-python/issues"
[project.optional-dependencies]
test = [
"ufmt==2.7.3",
"pre-commit==3.8.0",
"pytest==8.3.3",
"python-dotenv==1.0.1",
"pytest-cov==6.0.0",
"flake8-docstrings==1.7.0",
]
docs = [
"sphinx==7.4.7",
"sphinxawesome-theme==5.3.2",
"sphinx-autodoc-typehints==2.3.0",
"sphinx-multiversion==0.2.4",
]
dev = [
"judge0[test]",
"judge0[docs]",
]
[tool.flake8]
extend-ignore = [
'D100',
'D101',
'D102',
'D103',
'D104',
'D105',
'D107',
'D205',
"D209",
'D400',
'F821',
]
docstring-convention = "numpy"
max-line-length = 88
[tool.pytest.ini_options]
addopts = "-vv"