-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
62 lines (56 loc) · 1.66 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
[tool.poetry]
name = "gatorgrader"
version = "0.0.0"
description = "Automated Grading Tool that Checks the Work of Writers and Programmers"
authors = ["Gregory Kapfhammer <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/GatorEducator/gatorgrader"
repository = "https://github.com/GatorEducator/gatorgrader"
documentation = "https://github.com/GatorEducator/gatorgrader"
keywords = ["grading", "education", "allegheny"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Topic :: Education :: Testing",
"Topic :: Utilities",
]
packages = [{ include = "gator" }, { include = "gatorgrader.py" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/GatorEducator/gatorgrader/issues"
[tool.poetry.scripts]
gatorgrader = "gatorgrader:main"
[tool.poetry.dependencies]
python = ">=3.7.2,<4.0"
GitPython = "^3.1.27"
requests = "^2.28.1"
commonmark = "^0.9.1"
num2words = "^0.5.10"
pluginbase = "^1.0.1"
[tool.poetry.dev-dependencies]
pylint = "^2.14.5"
black = "^22.6.0"
pytest = "^7.1.2"
codecov = "^2.1.12"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
pytest-sugar = "^0.9.5"
bandit = "^1.7.4"
pydocstyle = "^6.1.1"
radon = "^5.1.0"
xenon = "^0.9.0"
snoop = "^0.4.1"
taskipy = "^1.10.2"
toml = "^0.10.2"
[tool.taskipy.tasks]
test = "./scripts/test.sh"
cover = "./scripts/cover.sh"
lint = "./scripts/lint.sh"
test-win = 'scripts\\test.bat'
cover-win = 'scripts\\cover.bat'
lint-win = 'scripts\\lint.bat'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"