-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (99 loc) · 2.6 KB
/
Copy pathpyproject.toml
File metadata and controls
108 lines (99 loc) · 2.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentic-codegen"
version = "1.0.0"
description = "Agentic Code Generator - Autonomous Python to C++ conversion with multiple AI agents"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Surabhi" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
# LLM API Providers
"groq>=0.4.0,<1.0.0",
"openai>=1.0.0,<2.0.0",
"anthropic>=0.7.0,<1.0.0",
# Web Interface
"gradio>=4.0.0,<5.0.0",
# Configuration & Utilities
"python-dotenv>=0.19.0,<1.0.0",
"pydantic>=2.0.0,<3.0.0",
"psutil>=5.9.0,<6.0.0",
"requests>=2.28.0,<3.0.0",
# Database & Persistence
"sqlalchemy>=2.0.0,<3.0.0",
"psycopg2-binary>=2.9.0,<3.0.0",
"alembic>=1.10.0,<2.0.0",
# Async Support
"aiofiles>=23.0.0,<24.0.0",
]
[project.optional-dependencies]
ml = [
"torch>=2.0.0,<3.0.0",
"transformers>=4.30.0,<5.0.0",
"numpy>=1.21.0,<2.0.0",
"pandas>=1.3.0,<2.0.0",
"scikit-learn>=1.0.0,<2.0.0",
"scipy>=1.7.0,<2.0.0",
]
rag = [
"chromadb>=0.3.0,<1.0.0",
"langchain>=0.3.0,<2.0.0",
"langchain-openai>=0.0.1,<1.0.0",
"langchain-groq>=0.0.1,<1.0.0",
]
async = [
"celery>=5.2.0,<6.0.0",
"redis>=4.3.0,<5.0.0",
]
api = [
"fastapi>=0.100.0,<1.0.0",
"uvicorn>=0.20.0,<1.0.0",
]
monitoring = [
"memory_profiler>=0.60.0,<1.0.0",
"matplotlib>=3.5.0,<4.0.0",
"plotly>=5.0.0,<6.0.0",
"prometheus_client>=0.16.0,<1.0.0",
]
[project.scripts]
agentic-codegen = "agentic_codegen.core.main:main"
[dependency-groups]
dev = [
"pytest>=7.0.0,<8.0.0",
"pytest-asyncio>=0.21.0,<1.0.0",
"pytest-cov>=4.0.0,<5.0.0",
"pytest-xdist>=3.0.0,<4.0.0",
"coverage>=6.0.0,<7.0.0",
"black>=23.0.0,<24.0.0",
"isort>=5.12.0,<6.0.0",
"flake8>=6.0.0,<7.0.0",
"mypy>=1.0.0,<2.0.0",
"bandit>=1.7.0,<2.0.0",
"hypothesis>=6.0.0,<7.0.0",
"faker>=10.0.0,<20.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.9"
strict = false
ignore_missing_imports = true