-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (71 loc) · 2.09 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
[build-system]
requires = ["setuptools==83.0.0", "wheel==0.47.0"]
build-backend = "setuptools.build_meta"
[project]
name = "alice-memory"
version = "0.15.1"
description = "Alice: the continuity layer for AI agents. Local-first memory with provenance, open loops, resumption, and review-governed writes."
readme = "docs/pypi-description.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Sami Rusani" }]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"alembic>=1.14,<2.0",
"fastapi>=0.115,<1.0",
"numpy>=1.26,<3.0",
"psycopg[binary,pool]>=3.2,<4.0",
"redis>=5.0,<9.0",
"sqlalchemy>=2.0,<3.0",
"uvicorn>=0.34,<1.0",
]
[project.urls]
Homepage = "https://github.com/samrusani/AliceBot"
Repository = "https://github.com/samrusani/AliceBot"
Issues = "https://github.com/samrusani/AliceBot/issues"
Changelog = "https://github.com/samrusani/AliceBot/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"bandit>=1.8,<2.0",
"build>=1.3,<2.0",
"coverage>=7.7,<8.0",
"mypy>=1.16,<3.0",
"pytest>=8.3,<10.0",
"pytest-cov>=6.2,<8.0",
"ruff>=0.12,<1.0",
"twine>=6.1,<7.0",
"virtualenv>=20.32,<22.0",
]
[project.scripts]
alice = "alicebot_api.cli:main"
alice-memory = "alicebot_api.onramp: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"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
# Start with correctness-only checks. Broad style cleanup is intentionally not
# part of the patch-release gate.
select = ["E9", "F63", "F7", "F82"]
[tool.coverage.run]
branch = true
source = ["alicebot_api"]
[tool.coverage.report]
show_missing = true
skip_covered = true