-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
57 lines (48 loc) · 1.3 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry]
authors = ["Ludeeus <ludeeus@ludeeus.dev>"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "Asynchronous Python client for the GitHub API"
exclude = ['**/__pycache__']
include = ["aiogithubapi", "aiogithubapi.*", "LICENCE.md"]
license = "MIT"
maintainers = ["Ludeeus <ludeeus@ludeeus.dev>"]
name = "aiogithubapi"
readme = "README.md"
repository = "https://github.com/ludeeus/aiogithubapi"
version = "0"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.8"
backoff = "<3"
[tool.poetry.dev-dependencies]
aresponses = "^2.1.6"
black = "^22.10.0"
isort = "^5.10.1"
mypy = "^0.982"
pdoc3 = "^0.10.0"
pylint = "^2.15.5"
pytest = "^7.2.0"
pytest-asyncio = "^0.15.1"
pytest-cov = "^4.0.0"
[tool.black]
line-length = 100
target-version = ['py38']
exclude = 'generated'
[tool.isort]
combine_as_imports = true
force_sort_within_sections = true
profile = "black"
[tool.pylint.'MESSAGES CONTROL']
disable = "unsubscriptable-object,duplicate-code"
[tool.coverage.run]
source = ["aiogithubapi"]
omit = ["setup.py", "example.py", "tests/*"]
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:"]