-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (47 loc) · 988 Bytes
/
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
[build-system]
requires = ["flit_core>=3.10.1,<4"]
build-backend = "flit_core.buildapi"
[project]
name = 'pt-repost'
version = '0'
requires-python = '~=3.10'
description = ''
dependencies = [
'qbittorrent-api==2024.11.70',
'click~=8.1.7',
'sslog==0.0.0a51',
'pydantic==2.10.2',
'httpx==0.27.2',
'bencode2~=0.3.15',
'tomli~=2.2.1',
'yarl~=1.18.0',
'guessit~=3.8.0',
'six',
'packaging',
'importlib_resources~=6.4.5',
]
[project.optional-dependencies]
dev = [
'types-six',
'mypy',
'pre-commit'
]
[project.scripts]
pt-repost = 'pt_repost.main:main'
[tool.pytest.ini_options]
cache_dir = '.venv/.cache/pytest'
pythonpath = [
"src"
]
[tool.mypy]
mypy_path = '$MYPY_CONFIG_FILE_DIR'
python_version = '3.10'
#strict = true
allow_redefinition = true
ignore_missing_imports = true
check_untyped_defs = true
warn_no_return = false
warn_redundant_casts = true
explicit_package_bases = true
[tool.ruff.lint]
extend-select = ['I']