-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (47 loc) · 1005 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
[project]
requires-python = ">= 3.13"
[tool.poetry]
name = "renamarr"
version = "0.1.0"
description = ""
authors = ["Brad Holland <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
pycliarr = "^1.0.26"
python-dotenv = "^1.0.1"
loguru = "^0.7.2"
python-dateutil = "^2.9.0-post.0"
python-config-parser = "^3.1.3"
schedule = "^1.2.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.1"
pytest-cov = "^6.0.0"
pytest-mock = "^3.14.0"
mock = "^5.1.0"
pytest-loguru = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"./src",
"./src/models",
]
testpaths = [
"./tests",
"./tests/models",
]
addopts = [
"--cov=src",
"tests",
"--cov-branch",
"--capture=sys",
"--cov-report=xml",
"--cov-report=html",
"--import-mode=importlib",
]
mock_use_standalone_module = "True"