| [build-system] |
| requires = ["setuptools>=61.0", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "mythos" |
| version = "0.1.0" |
| description = "A multi-agent framework with dynamic orchestration and memory" |
| readme = "README.md" |
| license = {text = "MIT"} |
| requires-python = ">=3.9" |
| authors = [ |
| {name = "Mythos Contributors"} |
| ] |
| keywords = ["multi-agent", "llm", "framework", "orchestration", "ai"] |
| 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", |
| "Programming Language :: Python :: 3.12", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| ] |
| dependencies = [ |
| "pydantic>=2.0", |
| "typing-extensions>=4.0", |
| "aiohttp>=3.9", |
| "httpx>=0.27", |
| ] |
|
|
| [project.optional-dependencies] |
| dev = ["pytest>=7.0", "pytest-asyncio>=0.23", "black", "ruff"] |
| gradio = ["gradio>=4.0", "huggingface-hub>=0.20"] |
| memory = ["numpy>=1.24", "chromadb>=0.5"] |
|
|
| [project.urls] |
| Homepage = "https://huggingface.co/huronvalley21/mythos" |
| Repository = "https://huggingface.co/huronvalley21/mythos" |
|
|
| [tool.setuptools.packages.find] |
| where = ["."] |
| include = ["mythos*"] |
|
|