-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (55 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
70 lines (55 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "hier-config-gpt"
version = "0.1.0"
description = "An enhanced Hierarchical Configuration library that integrates GPT capabilities for advanced configuration analysis and remediation."
authors = ["James Williams <james.williams@packetgeek.net>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/netdevops/hier-config-gpt"
repository = "https://github.com/netdevops/hier-config-gpt"
documentation = "https://hier-config-gpt.readthedocs.io/"
keywords = ["network", "configuration", "automation", "gpt", "llm", "ai", "cisco", "networking"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pydantic = "^2.9.2,<3.0"
hier-config = "^3.2.0,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
ruff = "^0.7.4"
mypy = "^1.13.0"
pylint = "^3.3.1"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.0"
[tool.poetry.group.chatgpt]
optional = true
[tool.poetry.group.chatgpt.dependencies]
openai = "^1.54.4,<2.0"
[tool.poetry.group.anthropic]
optional = true
[tool.poetry.group.anthropic.dependencies]
anthropic = "^0.39.0,<1.0"
[tool.poetry.group.ollama]
optional = true
[tool.poetry.group.ollama.dependencies]
ollama = "^0.4.7,<1.0"
[tool.poetry.extras]
openai = ["openai"]
anthropic = ["anthropic"]
ollama = ["ollama"]
all = ["openai", "anthropic", "ollama"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"