-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.04 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 = "pyblu"
version = "2.0.0"
description = ""
authors = ["Louis Christ <[email protected]>"]
repository = "https://github.com/LouisChrist/pyblu"
license = "MIT"
readme = "README.md"
packages = [
{ include = "pyblu", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.11.11"
lxml = "^5.0.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
black = "^24.4.2"
pytest = "^8.3.3"
aioresponses = "^0.7.6"
pytest-asyncio = "^0.24.0"
sphinx = "^8.1.3"
invoke = "^2.2.0"
semver = "^3.0.2"
mypy = "^1.13.0"
pygithub = "^2.3.0"
types-lxml = "^2024.12.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."messages control"]
disable = [
"missing-function-docstring",
"missing-module-docstring",
"missing-class-docstring",
"too-many-instance-attributes",
"too-many-public-methods",
"duplicate-code",
]
[tool.pylint.format]
max-line-length = 160
[tool.black]
line-length = 160
[tool.pytest.ini_options]
pythonpath = "src"
asyncio_mode = "auto"