-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (91 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
98 lines (91 loc) · 2.37 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hexis"
version = "1.0.5"
description = "Persistent memory and identity for AI — a Postgres-native cognitive architecture."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Eric Hartford", email = "ehartford@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.4.2",
"asyncpg>=0.29.0",
"psycopg2-binary>=2.9.9",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"numpy>=1.24.0",
"tiktoken>=0.5.1",
"openai>=1.3.0",
"google-genai>=1.0.0",
"pgvector>=0.2.0",
"mcp",
"rich>=13.0.0",
"textual>=1.0.0",
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-mock>=3.11.1",
"pytest-cov>=4.1.0",
"httpx>=0.25.0",
"tenacity>=8.2.3",
"selenium>=4.19.0",
"black>=23.11.0",
"isort>=5.12.0",
"mypy>=1.7.0",
]
[project.urls]
Homepage = "https://github.com/QuixiAI/Hexis"
Repository = "https://github.com/QuixiAI/Hexis"
Issues = "https://github.com/QuixiAI/Hexis/issues"
[project.scripts]
hexis = "apps.hexis_cli:main"
hexis-worker = "apps.worker:main"
hexis-mcp = "apps.hexis_mcp_server:main"
hexis-api = "apps.hexis_api:main"
hexis-channels = "services.channel_worker:main"
[project.optional-dependencies]
anthropic = [
"anthropic>=0.18.0",
]
channels = [
"discord.py>=2.3.0",
"python-telegram-bot>=21.0",
"slack-bolt>=1.18.0",
"slack-sdk>=3.27.0",
"matrix-nio>=0.24.0",
]
readers = [
"python-docx>=0.8.11",
"python-pptx>=0.6.21",
"openpyxl>=3.1.0",
"striprtf>=0.0.26",
"ebooklib>=0.18.0",
"beautifulsoup4>=4.12.0",
"feedparser>=6.0.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["apps*", "core*", "services*", "channels*", "plugins*", "skills*", "db*", "ops*", "characters*"]
[tool.setuptools.package-data]
services = ["prompts/*.md"]
characters = ["*.json", "*.jpg", "*.png"]
db = ["*.sql"]
ops = ["docker-compose.runtime.yml"]
"apps.tui" = ["*.tcss"]