-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.36 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
[tool.poetry]
name = "professional-python-exercises-3-api"
version = "0.1.0alpha"
description = "Command Line Interface for GitHub as part of the professional python course"
authors = ["Manuel Ramsaier <manuel.ramsaier89@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "professional_python_exercises_3_api"}]
[tool.poetry.scripts]
githubcli = "professional_python_exercises_3_api.cli.root:app"
[tool.poetry.dependencies]
python = "^3.8"
rich = "^12.6.0"
typer = "^0.6.1"
requests = "^2.28.1"
pygithub = "^1.56"
fastapi = "^0.88.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.5"
flake8 = "^5.0.4"
black = "^22.10.0"
pytest-cov = "^4.0.0"
mkdocs = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.19.0"}
mkdocs-coverage = "^0.2.5"
cyclonedx-bom = "^3.6.3"
mdbom = "^0.3.0"
pre-commit = "^2.20.0"
twine = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."MESSAGES CONTROL"]
disable = [
# Disable missing module docstring since the information
# regarding functionality is provided with more than enough
# detail by the functions themselves
"missing-module-docstring",
"too-many-locals"
]
[tool.pylint.basic]
# Test files and classes don't need linting
no-docstring-rgx="^(_|test_|Test)"
[tool.black]
line-length=100