-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (62 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "homelabv3_infra"
version = "0.0.0"
description = "Homelab management infrastructure (Packer / Terraform / Ansible / Octodns / Argocd) "
readme = "README.md"
authors = [
]
keywords = [
"kubernetes",
"ansible",
"packer",
"terraform",
"selfhosted",
"homelab",
"terragrunt",
"argocd"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Topic :: Utilities",
]
requires-python = ">=3.12,<4.0.0"
[project.urls]
Homepage = "https://github.com/M0NsTeRRR/homelabv3-infra"
Repository = "https://github.com/M0NsTeRRR/homelabv3-infra"
Issues = "https://github.com/M0NsTeRRR/homelabv3-infra/issues"
Funding = "https://ko-fi.com/ludovicortega"
[project.optional-dependencies]
ansible = [
"ansible-core~=2.18.0",
"ansible-lint~=24.10.0",
"dnspython~=2.7.0",
"netaddr~=1.3.0",
"cryptography~=44.0.0",
"passlib~=1.7.4",
# https://foss.heptapod.net/python-libs/passlib/-/issues/190
"bcrypt~=4.0.1",
"requests~=2.32.3",
"kubernetes~=31.0.0",
"PyYAML~=6.0.2",
"jsonpatch~=1.33"
]
terraform = [
"paramiko~=3.5.0"
]
octodns = [
"octodns~=1.10.0",
"octodns_scaleway~=0.0.4",
"octodns-powerdns~=0.0.7"
]
documentation = [
"mkdocs-material[imaging]~=9.5.45",
"pytz~=2024.2"
]
[tool.uv]
package = false
environments = ["platform_system != 'Windows'"]