forked from pyta-uoft/pyta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (45 loc) · 898 Bytes
/
setup.cfg
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
[metadata]
name = python-ta
version = attr: python_ta.__version__
description = Code checking tool for teaching Python
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pyta-uoft/pyta
author = David Liu
author_email = david@cs.toronto.edu
license = MIT
[options]
install_requires =
astroid ~= 2.11.6
pycodestyle
pylint ~= 2.14.4
tabulate~=0.8.9
colorama
six
jinja2
pygments
wrapt >= 1.12.0
typeguard >= 2.7.1
requests
click >= 8.0.1
toml
packages = find:
python_requires = ~=3.8
zip_safe = False
include_package_data = True
[options.extras_require]
dev =
graphviz
hypothesis
inflection
myst-parser
pre-commit
pytest
pytest-cov
sphinx
sphinx-rtd-theme
z3 =
z3-solver
[options.entry_points]
console_scripts =
python_ta = python_ta.__main__:main