-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.08 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
[tool.poetry]
name = "aeonsync"
version = "0.2.0"
description = "A simple but powerful rsync backup tool"
authors = ["Stefanie Jane <[email protected]>"]
license = "GPLv3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
typer = "^0.12.5"
rich = "^13.8.0"
prompt-toolkit = "^3.0.47"
toml = "^0.10.2"
appdirs = "^1.4.4"
colorama = "^0.4.6"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pylint = "^3.2.7"
mypy = "^1.11.2"
pytest-cov = "^5.0.0"
types-toml = "^0.10.8.20240310"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
aeon = "aeonsync.cli:app"
lint = "scripts.lint:run_lint"
[tool.pytest.ini_options]
addopts = "--cov=aeonsync --cov-report=term-missing"
testpaths = ["tests"]
[tool.coverage.run]
source = ["aeonsync"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"pass",
"except ImportError:",
]
[tool.pylint.messages_control]
disable = "C0111"
[tool.mypy]
ignore_missing_imports = true