-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.74 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
[project]
name = "evolution-kernel"
version = "1.1.2"
description = "A minimal autonomous evolution kernel with isolated planner, executor, evaluator roles."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Protocol Zero", email = "257158451+Protocol-zero-0@users.noreply.github.com" },
]
keywords = [
"agents",
"autonomous",
"evolution",
"llm",
"ai-coding",
"runtime",
"harness",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"PyYAML>=6.0",
]
[project.urls]
Homepage = "https://github.com/Protocol-zero-0/evolution-kernel"
Repository = "https://github.com/Protocol-zero-0/evolution-kernel"
Issues = "https://github.com/Protocol-zero-0/evolution-kernel/issues"
Releases = "https://github.com/Protocol-zero-0/evolution-kernel/releases"
[project.scripts]
evolution-kernel = "evolution_kernel.cli:main"
[tool.setuptools]
# Repo layout has multiple top-level dirs (`evolution_kernel`, `adapters`,
# `examples`, `tests`); setuptools' flat-layout auto-discovery refuses to
# pick one. Pin the runtime package explicitly so `pip install -e .` works
# in a clean environment.
packages = ["evolution_kernel"]
[tool.setuptools.package-data]
evolution_kernel = ["templates/*.yml", "roles/*"]