-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
91 lines (79 loc) · 1.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "python-ta"
description = "Code checking tool for teaching Python"
authors = [
{name = "David Liu", email = "[email protected]"},
]
license = {text = "MIT"}
readme = "README.md"
dependencies = [
"astroid ~= 3.3.5",
"click >= 8.0.1, < 9",
"colorama ~= 0.4.6",
"jinja2 ~= 3.1.2",
"pycodestyle ~= 2.11",
"pygments >= 2.14,< 2.19",
"pylint ~= 3.3.1",
"requests >= 2.28,< 2.33",
"six",
"tabulate ~= 0.9.0",
"toml ~= 0.10.2",
"typeguard >= 4.1.0, < 5",
"wrapt >= 1.15.0, < 2",
"black",
]
dynamic = ["version"]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"hypothesis",
"inflection",
"myst-parser",
"pre-commit",
"pytest",
"pytest-cov >= 4.0,< 5.1",
"pytest-mock",
"pytest-snapshot",
"sphinx",
"sphinx-rtd-theme",
]
cfg = [
"graphviz",
]
z3 = [
"z3-solver",
"importlib_resources ; python_version<'3.9'"
]
[project.scripts]
python_ta = "python_ta.__main__:main"
[project.urls]
Homepage = "https://github.com/pyta-uoft/pyta"
Documentation = "https://www.cs.toronto.edu/~david/pyta/"
Repository = "https://github.com/pyta-uoft/pyta.git"
Changelog = "https://github.com/pyta-uoft/pyta/blob/master/CHANGELOG.md"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "python_ta.__version__"}
#readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = ["python_ta*"]
[tool.black]
extend-exclude = '''
^/examples/
'''
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = [
"tests",
]