-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 1.15 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
[tool.poetry]
name = "pystoplight"
version = "0"
description = "A tool that enables educators to easily control push access to GitHub Classroom assignment repositories."
readme = "README.md"
authors = ["Maria Kim Heinert <[email protected]>"]
packages = [
{ include = "stoplight"}
]
[tool.poetry.scripts]
stoplight = "stoplight.run:app"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = "^2.27.1"
toml = "^0.10.2"
typer = {extras = ["all"], version = "^0.4.0"}
rich = "^11.1.0"
types-toml = "^0.10.3"
types-requests = "^2.27.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-mock = "^3.6.1"
pytest-cov = "^3.0.0"
taskipy = "^1.9.0"
mypy = "^0.931"
responses = "^0.18.0"
pylint = "^2.12.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test = "pytest --cov-report term-missing --cov-fail-under=70 --cov-branch --cov=stoplight tests/"
lint = "mypy stoplight; pylint stoplight/ tests/"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"missing-function-docstring",
"missing-module-docstring",
"line-too-long",
"global-statement",
"missing-class-docstring",
"duplicate-code"]