-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
73 lines (61 loc) · 1.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "pytheus"
version = "0.6.0"
authors = [
{ name="Llandy Riveron Del Risco", email="[email protected]" },
]
description = "playing with metrics"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/Llandy3d/pytheus"
Documentation = "https://pythe.us"
[project.optional-dependencies]
test = [
"pytest >= 7.0.0",
"pytest-asyncio >= 0.21.0",
"mypy == 1.1.1",
"ruff == 0.0.260",
"black == 23.3.0",
"isort == 5.12.0",
"tox == 4.4.11",
# mypy types
"types-redis == 4.6.0.20241004",
]
redis = [
"redis >= 4.0.0",
]
prometheus_client = [
"prometheus_client >= 0.17.1",
]
docs = [
"mkdocs == 1.4.2",
"mkdocs-material == 9.1.5",
]
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
exclude = ["venv", "example.py"]
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.ruff]
line-length = 100
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"tests/test_exposition.py" = ["E501"]
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
[tool.black]
line-length = 100