This repository was archived by the owner on Mar 23, 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
121 lines (108 loc) · 3.32 KB
/
pyproject.toml
File metadata and controls
121 lines (108 loc) · 3.32 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cortex-research-suite"
version = "1.3.0"
description = "AI Research Operating System — 27 self-evolving skills that compete, mutate, and evolve through genetic selection. Interactive Petri Dish visualization, 8 LLM judge providers, 6-platform support, and enterprise-grade security. Built on Karpathy's autoresearch pattern."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "TECHKNOWMAD-LABS"},
]
keywords = [
"autoresearch",
"skill-evolution",
"genetic-algorithm",
"claude-code",
"mcp",
"langchain",
"crewai",
"ai-agents",
"mlops",
"autonomous-agents",
"synthetic-data",
"evaluation",
"multi-agent",
"llm-evaluation",
"arena",
"web-scraping",
"osint",
"live-data",
"scrapling",
"petri-dish",
"evolution-visualization",
"cross-platform",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/TECHKNOWMAD-LABS/cortex-research-suite"
Repository = "https://github.com/TECHKNOWMAD-LABS/cortex-research-suite"
Documentation = "https://techknowmad-labs.github.io/cortex-research-suite"
Issues = "https://github.com/TECHKNOWMAD-LABS/cortex-research-suite/issues"
Changelog = "https://github.com/TECHKNOWMAD-LABS/cortex-research-suite/blob/main/CHANGELOG.md"
[project.optional-dependencies]
api = ["anthropic>=0.40.0"]
yaml = ["pyyaml>=6.0"]
live = ["scrapling>=0.4.0"]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"mypy>=1.10",
"ruff>=0.4.0",
"pyyaml>=6.0",
]
all = ["cortex-research-suite[api,yaml,dev,live]"]
[project.scripts]
cortex-generate = "scripts.generate_dataset:main"
cortex-benchmark = "scripts.run_benchmark:main"
cortex-research = "scripts.run_research:main"
[tool.setuptools.packages.find]
include = ["cortex*"]
[tool.setuptools.package-data]
"*" = ["ARENA.md", "SKILL.md", "*.yaml", "*.json", "*.html"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-v --tb=short"
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "S", "B", "A", "C4", "SIM", "TCH"]
ignore = [
"S101", # assert in tests is fine
"S603", # subprocess with shell=False is intentional
"S607", # partial path for subprocess is fine
"E501", # line length handled by formatter
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101", "S106"]
[tool.coverage.run]
source = ["cortex"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true
fail_under = 70