-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.15 KB
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]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "pyblu"
version = "2.0.6"
description = ""
license = "MIT"
authors = [{ name = "Louis Christ", email = "mail@louischrist.de" }]
readme = "README.md"
dependencies = [
"aiohttp >= 3.11.11",
"lxml >= 5.0.0"]
[project.urls]
repository = "https://github.com/LouisChrist/pyblu"
[tool.hatch.build.targets.sdist]
include = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/pyblu"]
[tool.uv]
dev-dependencies = [
"pylint >= 3.2.6",
"black >= 24.8.0",
"pytest >= 8.3.2",
"aioresponses >= 0.7.6",
"pytest-asyncio >= 0.24.0",
"sphinx >= 8.0.2",
"invoke >= 2.2.0",
"semver >= 3.0.2",
"mypy >= 1.11.2",
"pygithub >= 2.4.0",
"types-lxml >= 2024.8.7"]
[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"