-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (99 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
106 lines (99 loc) · 2.24 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cortex-intelligence"
version = "1.0.0"
description = "Persistent cross-session intelligence layer for LLM agents"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [
{name = "Jesse Kemp"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"anthropic>=0.40.0",
"rich>=13.0.0",
"pydantic>=2.5.0",
"requests>=2.31.0",
"PyYAML>=6.0.1",
"structlog>=23.2.0",
"python-dotenv>=1.0.0",
"psutil>=5.9.0",
"pytz>=2024.1",
"numpy>=1.24.0",
]
[project.optional-dependencies]
server = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"apscheduler>=3.10.0",
"slowapi>=0.1.9",
"mcp>=1.0.0",
]
analytics = [
"xgboost>=2.0.0",
"shap>=0.44.0",
"openai>=1.0.0",
]
orchestration = [
"litellm>=1.0",
"httpx>=0.25.0",
]
all = [
"cortex-intelligence[server,analytics,orchestration]",
]
dev = [
"pytest>=7.0",
"ruff>=0.1",
"mypy>=1.0",
]
[project.scripts]
cortex = "cli:main"
cx = "cli:main"
cortex-mcp = "mcp_server:main"
[project.urls]
Homepage = "https://github.com/jessekemp1/cortex"
Repository = "https://github.com/jessekemp1/cortex"
[tool.setuptools]
py-modules = ["bridge", "orchestrator", "formatter", "briefing", "feedback", "goal_parser", "learning", "mcp_server"]
[tool.setuptools.packages.find]
exclude = [
"tests*",
"docs*",
"examples*",
"reports*",
"analysis*",
"scripts*",
"MARKETING*",
"FUTURE*",
"STRATEGY*",
"OPUS*",
"GPT5*",
"_dead*",
"_archive*",
"mvp*",
"cortex_mvp*",
"golden-spec-method*",
"config-backups*",
"vision*",
"site*",
"dashboard*",
"batch*",
"automation*",
"v2*",
"v21*",
]
[tool.pytest.ini_options]
markers = [
"integration: requires running services or monorepo environment",
]