This repository was archived by the owner on Apr 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "auto-codex"
version = "3.0.1"
description = "Multi-agent autonomous coding framework"
# This project is a Codex-based fork derived from https://github.com/AndyMik90/Auto-Claude
readme = "README.md"
license = {text = "AGPL-3.0"}
requires-python = ">=3.12"
authors = [
{name = "Auto-Codex Team"}
]
keywords = ["ai", "codex", "autonomous", "coding", "agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click>=8.0",
"rich>=13.0",
"pyyaml>=6.0",
"python-dotenv>=1.0",
"httpx>=0.25",
"pydantic>=2.0",
"jsonschema>=4.0",
]
[project.optional-dependencies]
graphiti = [
"graphiti-core>=0.5",
"falkordb>=1.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-asyncio>=0.21",
"hypothesis>=6.0",
]
[project.scripts]
auto-codex = "cli.main:main"
[tool.setuptools.packages.find]
where = ["auto-codex"]
include = ["*"]
exclude = ["tests*", "*.egg-info"]