-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.53 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "devops-agent"
version = "0.0.6"
description = "AI-powered DevOps CLI assistant"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "M K Pavan Kumar", email = "manthapavankumar11@gamil.com"}
]
keywords = ["devops", "cli", "ai", "automation", "terraform", "kubernetes", "docker"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dependencies = [
"click>=8.3.1",
"rich>=14.2.0",
"anthropic>=0.75.0",
"openai>=2.14.0",
"google-genai>=1.56.0",
"pyyaml>=6.0.3",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"colorama>=0.4.6",
"agno>=2.3.21",
"poml>=0.0.8",
"qdrant-client>=1.16.2",
"fastembed>=0.7.4",
"ddgs>=9.10.0",
"sqlalchemy>=2.0.45",
"chromadb>=1.4.0",
"ollama>=0.6.1"
]
[project.scripts]
devops-agent = "devops_agent.cli:main"
[project.optional-dependencies]
dev = [
"black>=25.12.0",
"isort>=7.0.0",
"flake8>=7.3.0",
]
[tool.setuptools]
packages = ["devops_agent", "devops_agent.core", "devops_agent.templates", "devops_agent.utils", "devops_agent.prompts"]
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 100