-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (53 loc) · 1.91 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openkyrozen"
version = "2.0.0"
description = "Self-learning AI Agent — DeepSeek · OpenAI · Claude · Gemini · Ollama"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12,<3.14"
authors = [
{name = "Evan", email = "evan@openkyrozen.dev"}
]
keywords = ["ai", "agent", "llm", "self-learning", "deepseek", "chatbot", "cli"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"chromadb>=0.4.0",
"cryptography>=42.0.0",
"googlesearch-python>=1.2.3",
"openai>=1.0.0",
"requests>=2.31.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
web = ["fastapi", "uvicorn"]
claude = ["anthropic>=0.30.0"]
gemini = ["google-generativeai>=0.8.0"]
browser = ["playwright>=1.40"]
all = ["fastapi", "uvicorn", "anthropic>=0.30.0", "google-generativeai>=0.8.0"]
[project.scripts]
kyrozen = "main:main"
kyrozen-web = "server:main_entry"
[project.urls]
Homepage = "https://github.com/EvanProgramming/OpenKyrozen"
Repository = "https://github.com/EvanProgramming/OpenKyrozen"
Issues = "https://github.com/EvanProgramming/OpenKyrozen/issues"
[tool.setuptools]
py-modules = ["main", "memory", "providers", "server", "tools", "event_store", "learning_engine", "migration", "task_engine", "scheduler", "skill_registry", "browser_manager", "instruction_loader", "subagents", "capability_tokens", "tool_registry", "dynamic_tools"]
include-package-data = true
[tool.setuptools.packages.find]
include = ["plugins*"]
[tool.setuptools.package-data]
plugins = ["*.py"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]