-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 826 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "alice-core"
version = "0.5.1"
description = "Public-safe Alice core package for local memory and continuity workflows."
requires-python = ">=3.12"
dependencies = [
"alembic>=1.14,<2.0",
"fastapi>=0.115,<1.0",
"psycopg[binary]>=3.2,<4.0",
"redis>=5.0,<6.0",
"sqlalchemy>=2.0,<3.0",
"uvicorn>=0.34,<1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9.0",
]
[project.scripts]
alice = "alicebot_api.cli:main"
alicebot = "alicebot_api.cli:main"
alicebot-mcp = "alicebot_api.mcp_server:main"
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.packages.find]
where = ["apps/api/src", "workers"]
[tool.pytest.ini_options]
pythonpath = ["apps/api/src", "workers"]
testpaths = ["tests"]