-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (39 loc) · 1.06 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
[tool.poetry]
name = "apolo-base-client"
version = "0.0.0"
description = "Common utilities for apolo internal clients"
authors = ["Andrew Svetlov <andrew.svetlov@gmail.com>"]
license = "Apache 2"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.9.0"
typing-extensions = ">=4.4.0"
pytest-aiohttp = "^1.0.5"
pytest-asyncio = "^0.24.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-aiohttp = "^1.0.5"
pytest-asyncio = "^0.24.0"
mypy = "^1.12.0"
pre-commit = "^4.0.1"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
strict = true
warn_unused_ignores = true
warn_return_any = true
warn_redundant_casts = true
pretty = true
packages = ["apolo_base_client", "tests"]
[tool.ruff.lint]
select = ["E", "F", "ASYNC", "T10", "UP", "I", "EXE"]