67 lines
1.6 KiB
TOML
67 lines
1.6 KiB
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=61", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "fusionagi"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Modular, agentic AI orchestration framework with reasoning, planning, execution, and memory."
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
license = { text = "MIT" }
|
||
|
|
authors = [{ name = "FusionAGI" }]
|
||
|
|
keywords = ["agi", "agents", "orchestration", "llm"]
|
||
|
|
classifiers = [
|
||
|
|
"Development Status :: 3 - Alpha",
|
||
|
|
"Intended Audience :: Developers",
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"Programming Language :: Python :: 3.10",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
"Programming Language :: Python :: 3.13",
|
||
|
|
]
|
||
|
|
dependencies = [
|
||
|
|
"pydantic>=2.0,<3",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
openai = ["openai>=1.12"]
|
||
|
|
anthropic = ["anthropic>=0.39"]
|
||
|
|
local = ["litellm>=1.40"]
|
||
|
|
api = ["fastapi>=0.115", "uvicorn>=0.32", "httpx>=0.27"]
|
||
|
|
maa = []
|
||
|
|
dev = [
|
||
|
|
"pytest>=7.4",
|
||
|
|
"mypy>=1.8",
|
||
|
|
"ruff>=0.4",
|
||
|
|
]
|
||
|
|
all = ["fusionagi[openai,anthropic,local]"]
|
||
|
|
|
||
|
|
[project.urls]
|
||
|
|
Repository = "https://github.com/fusionagi/fusionagi"
|
||
|
|
Documentation = "https://github.com/fusionagi/fusionagi/tree/main/docs"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["."]
|
||
|
|
include = ["fusionagi*"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
pythonpath = ["."]
|
||
|
|
|
||
|
|
[tool.mypy]
|
||
|
|
python_version = "3.10"
|
||
|
|
warn_return_any = true
|
||
|
|
warn_unused_configs = true
|
||
|
|
ignore_missing_imports = true
|
||
|
|
exclude = ["\\.venv/", "fusionagi\\.egg-info/"]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
target-version = "py310"
|
||
|
|
line-length = 100
|
||
|
|
select = ["E", "F", "I", "N", "W"]
|
||
|
|
ignore = ["E501"]
|
||
|
|
|
||
|
|
[tool.ruff.isort]
|
||
|
|
known-first-party = ["fusionagi"]
|