-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.45 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "devagent"
version = "1.0.0"
description = "AI-powered developer tool testing pipeline with web interface"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "DevAgent Team"}
]
keywords = ["testing", "ai", "developer-tools", "automation", "fastapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.11"
dependencies = [
# Web interface
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"jinja2>=3.1.2",
"python-multipart>=0.0.6",
"python-dotenv>=1.0.0",
# AI and analysis
"dspy-ai>=2.4.9",
"pydantic>=2.5.0",
# Web crawling and content processing
"crawl4ai>=0.2.77",
"beautifulsoup4>=4.12.2",
"requests>=2.31.0",
# Utility
"rich>=13.7.0",
"click>=8.1.7",
]
[project.scripts]
devagent-web = "doc_eval_agent.main:main"
devagent-cli = "doc_eval_agent.test:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["doc_eval_agent*"]
[tool.setuptools.package-data]
doc_eval_agent = ["templates/*", "templates/**/*"]