From 9c723fba720b8905c72e61f798203862edfebd46 Mon Sep 17 00:00:00 2001 From: Protocol Zero <257158451+Protocol-zero-0@users.noreply.github.com> Date: Tue, 26 May 2026 08:48:31 +0000 Subject: [PATCH] chore: complete pyproject.toml metadata for PyPI listing Match the metadata uploaded to PyPI for v1.1.0 so future cuts inherit the same classifiers/keywords/urls/authors. - Add authors (Protocol Zero) - Add keywords: agents, autonomous, evolution, llm, ai-coding, runtime, harness - Add classifiers: Development Status, Python 3.10/3.11/3.12, Topic :: AI / Code Generators / Software Development - Add [project.urls]: Homepage, Repository, Issues, Releases - License classifier omitted (PEP 639: superseded by license = "MIT" expression) PyPI: https://pypi.org/project/evolution-kernel/1.1.0/ --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a08c202..9a7062b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,10 +6,41 @@ 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"