forked from SuperagenticAI/Agenspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (68 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
79 lines (68 loc) · 2.07 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agenspy"
version = "0.0.1"
description = "Agenspy (Agentic-DSPy)- Protocol-first AI agent framework built on DSPy - supporting MCP, Agent2Agent, and future protocols"
readme = "README.md"
authors = [{ name = "Shashi Jagtap", email = "shashi@super-agentic.ai" }]
license = { text = "MIT License" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"dspy",
"asyncio",
"typing-extensions",
"pydantic>=2.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"click>=8.0", # Add click as a dependency for the CLI
"pyyaml>=6.0", # Add pyyaml for workflow files
]
[project.optional-dependencies]
mcp = ["mcp>=1.0.0"]
dev = ["pytest>=6.2.5", "black", "ruff", "mypy", "pre-commit>=3.0.0"]
examples = ["openai>=1.0.0", "requests>=2.31.0"]
servers = ["fastapi>=0.100.0", "uvicorn>=0.20.0"]
[project.urls]
homepage = "https://github.com/superagenticai/agenspy"
repository = "https://github.com/superagenticai/agenspy"
documentation = "https://agenspy.readthedocs.io"
[project.scripts]
agenspy = "agenspy.cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["agenspy*"]
exclude = ["tests*"]
[tool.ruff]
line-length = 120
target-version = "py38"
fix = true
exclude = [
".git",
".venv",
"venv",
"docs/*",
"examples/*",
"__pycache__",
"build",
"dist"
]
[tool.ruff.lint]
select = ["E", "F", "B", "I", "W"]
ignore = ["E501", "E701", "E702", "F841", "F821", "B904", "E402"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["agenspy"]