huronvalley21 commited on
Commit
9d9c9fa
·
verified ·
1 Parent(s): 069f1c1

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +45 -0
pyproject.toml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mythos"
7
+ version = "0.1.0"
8
+ description = "A multi-agent framework with dynamic orchestration and memory"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ {name = "Mythos Contributors"}
14
+ ]
15
+ keywords = ["multi-agent", "llm", "framework", "orchestration", "ai"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
26
+ ]
27
+ dependencies = [
28
+ "pydantic>=2.0",
29
+ "typing-extensions>=4.0",
30
+ "aiohttp>=3.9",
31
+ "httpx>=0.27",
32
+ ]
33
+
34
+ [project.optional-dependencies]
35
+ dev = ["pytest>=7.0", "pytest-asyncio>=0.23", "black", "ruff"]
36
+ gradio = ["gradio>=4.0", "huggingface-hub>=0.20"]
37
+ memory = ["numpy>=1.24", "chromadb>=0.5"]
38
+
39
+ [project.urls]
40
+ Homepage = "https://huggingface.co/huronvalley21/mythos"
41
+ Repository = "https://huggingface.co/huronvalley21/mythos"
42
+
43
+ [tool.setuptools.packages.find]
44
+ where = ["."]
45
+ include = ["mythos*"]