-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "csep"
version = "1.3.8"
description = "Self-evolution loop for OpenAI Codex: session reflection, session recall, and reflection-generated skills with zero Python runtime dependencies."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "T0UGH" },
]
keywords = [
"codex",
"openai",
"llm",
"memory",
"recall",
"hooks",
"plugin",
"self-evolution",
]
# Keep Python runtime deps empty — the plugin only uses stdlib. If you ever add
# a real dep, also update the "zero Python runtime dependencies" wording in the
# description above and in README.
dependencies = []
# Classifiers drive PyPI search + the project page sidebar. Keep the list
# narrow: only things that are actually true of this package.
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/T0UGH/codex-self-evolution-plugin"
Repository = "https://github.com/T0UGH/codex-self-evolution-plugin"
Issues = "https://github.com/T0UGH/codex-self-evolution-plugin/issues"
Documentation = "https://github.com/T0UGH/codex-self-evolution-plugin/blob/main/docs/getting-started.md"
Architecture = "https://github.com/T0UGH/codex-self-evolution-plugin/blob/main/docs/architecture.md"
[project.optional-dependencies]
# `pip install csep[dev]` for contributors.
dev = ["pytest>=7", "build>=1.0", "twine>=5"]
[project.scripts]
codex-self-evolution = "codex_self_evolution.cli:main"
csep = "codex_self_evolution.csep:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
codex_self_evolution = [
"session_recall/policy.md",
"session_recall/session_recall.md",
"plugin_bundle/.codex-plugin/plugin.json",
"plugin_bundle/.codex-plugin/hooks.json",
"plugin_bundle/skills/csep-session-recall/SKILL.md",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]