-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (37 loc) · 1.09 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
[tool.black]
line-length = 120
[tool.poetry]
name = "lungo-cli"
version = "0.5.12"
description = "A user-friendly home lab setup designed for small-to-mid-scale on-premises hosting."
authors = ["raymond-u <[email protected]>"]
readme = "README.md"
repository = "https://github.com/raymond-u/lungo"
documentation = "https://raymond-u.github.io/lungo/"
keywords = ["homelab", "self-host"]
packages = [{ include = "lungo_cli", from = "src" }]
[tool.poetry.dependencies]
python = "^3.12"
aenum = "^3.1.15"
cryptography = "^43.0.3"
jinja2 = "^3.1.4"
packaging = "^24.2"
platformdirs = "^4.3.6"
pydantic = { extras = ["email"], version = "^2.9.2" }
pydantic-yaml = "^1.3.0"
requests = "^2.32.3"
typer = "^0.13.0"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mike = "^2.1.3"
mkdocs-glightbox = "^0.4.0"
mkdocs-material = "^9.5.44"
mkdocs-typer = "^0.0.3"
[tool.poetry.scripts]
lungo = "lungo_cli.app.main:app_wrapper"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"