Track 1: pyproject.toml
Browse files- pyproject.toml +57 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=68.0", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "purpose-agent"
|
| 7 |
+
version = "2.0.0"
|
| 8 |
+
description = "A local-first self-improvement kernel for agents. Turns traces into tested memory so agents improve without fine-tuning."
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
license = {text = "MIT"}
|
| 11 |
+
requires-python = ">=3.10"
|
| 12 |
+
authors = [{name = "Rohan03"}]
|
| 13 |
+
keywords = ["agents", "self-improving", "slm", "llm", "memory", "rl", "local-first"]
|
| 14 |
+
classifiers = [
|
| 15 |
+
"Development Status :: 4 - Beta",
|
| 16 |
+
"Intended Audience :: Developers",
|
| 17 |
+
"License :: OSI Approved :: MIT License",
|
| 18 |
+
"Programming Language :: Python :: 3",
|
| 19 |
+
"Programming Language :: Python :: 3.10",
|
| 20 |
+
"Programming Language :: Python :: 3.11",
|
| 21 |
+
"Programming Language :: Python :: 3.12",
|
| 22 |
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 23 |
+
]
|
| 24 |
+
|
| 25 |
+
# Zero core dependencies — stdlib only
|
| 26 |
+
dependencies = []
|
| 27 |
+
|
| 28 |
+
[project.optional-dependencies]
|
| 29 |
+
ollama = ["ollama>=0.4.0"]
|
| 30 |
+
openai = ["openai>=1.0.0"]
|
| 31 |
+
anthropic = ["anthropic>=0.40.0"]
|
| 32 |
+
google = ["google-genai>=1.0.0"]
|
| 33 |
+
hf = ["huggingface_hub>=0.25.0"]
|
| 34 |
+
llama-cpp = ["llama-cpp-python>=0.3.0"]
|
| 35 |
+
all = [
|
| 36 |
+
"ollama>=0.4.0",
|
| 37 |
+
"openai>=1.0.0",
|
| 38 |
+
"anthropic>=0.40.0",
|
| 39 |
+
"google-genai>=1.0.0",
|
| 40 |
+
"huggingface_hub>=0.25.0",
|
| 41 |
+
"llama-cpp-python>=0.3.0",
|
| 42 |
+
]
|
| 43 |
+
dev = [
|
| 44 |
+
"pytest>=8.0",
|
| 45 |
+
"ruff>=0.8.0",
|
| 46 |
+
]
|
| 47 |
+
|
| 48 |
+
[project.scripts]
|
| 49 |
+
purpose-agent = "purpose_agent.__main__:quickstart"
|
| 50 |
+
|
| 51 |
+
[project.urls]
|
| 52 |
+
Homepage = "https://huggingface.co/Rohan03/purpose-agent"
|
| 53 |
+
Repository = "https://huggingface.co/Rohan03/purpose-agent"
|
| 54 |
+
Documentation = "https://huggingface.co/Rohan03/purpose-agent/blob/main/COMPILED_RESEARCH.md"
|
| 55 |
+
|
| 56 |
+
[tool.setuptools.packages.find]
|
| 57 |
+
include = ["purpose_agent*"]
|