-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.14 KB
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
[project]
name = "vibenetbackup"
dynamic = ["version"]
description = "Network device configuration backup manager"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]",
"sqlalchemy>=2.0.23",
"alembic",
"apscheduler>=3.10",
"netmiko>=4.3",
"paramiko",
"httpx",
"gitpython",
"smbprotocol>=1.16",
"grandfatherson",
"pydantic>=2.0",
"pydantic-settings",
"python-multipart",
"jinja2",
"cryptography",
"python-dotenv",
"apprise>=1.9",
]
[project.scripts]
vibenetbackup = "app.main:cli"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "app.version.VERSION"}
[tool.setuptools.packages.find]
include = ["app*"]
[tool.setuptools.package-data]
app = ["templates/**/*.html", "static/**/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"
[tool.coverage.run]
source = ["app"]
omit = ["*/tests/*", "*/test_*"]