-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (31 loc) · 1.21 KB
/
setup.py
File metadata and controls
31 lines (31 loc) · 1.21 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_desc = f.read()
setup(
name = "spawnverse",
version = "0.1.0",
author = "sajosam",
description = "Self-spawning cognitive agents. Zero pre-built agents. Distributed memory. Fossil record.",
long_description = long_desc,
long_description_content_type = "text/markdown",
url = "https://github.com/sajosam/spawnverse",
packages = find_packages(),
python_requires = ">=3.10",
install_requires = ["groq>=1.1.0"],
extras_require = {
"vectordb": ["chromadb>=0.4.0"],
"apis" : ["requests>=2.28.0"],
"dev" : ["pytest", "black", "ruff"],
},
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords = [
"ai agents", "autonomous agents", "multi-agent systems",
"self-spawning agents", "agentic ai", "llm orchestration",
"agent framework", "groq", "llama", "distributed memory",
"cognitive architecture", "agent spawning",
],
)