-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (78 loc) · 2.12 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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "codealmanac"
version = "0.1.13"
description = "A codebase wiki maintained by AI coding agents."
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE.md"]
authors = [{ name = "Almanac" }]
keywords = ["agents", "codebase", "documentation", "wiki"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"beautifulsoup4>=4.15.0",
"charset-normalizer>=3.4.7",
"claude-agent-sdk>=0.2.110",
"fastapi>=0.138.1",
"httpx>=0.28.1",
"humanfriendly>=10.0",
"jsonlines>=4.0",
"markdown-it-py>=4.2.0",
"pathspec>=1.1.1",
"pydantic>=2.8",
"pydantic-settings>=2.12.0",
"python-frontmatter>=1.3.0",
"pyyaml>=6.0",
"rich>=15.0.0",
"ruamel-yaml>=0.19.1",
"uvicorn>=0.49.0",
]
[project.scripts]
codealmanac = "codealmanac.cli.main:main"
codealmanac-capture-hook = "codealmanac.capture_hook:main"
codealmanac-job-worker = "codealmanac.job_worker:main"
codealmanac-local-trigger = "codealmanac.local_trigger:main"
codealmanac-local-worker = "codealmanac.local_worker:main"
[project.urls]
Repository = "https://github.com/AlmanacCode/codealmanac"
Issues = "https://github.com/AlmanacCode/codealmanac/issues"
[dependency-groups]
dev = [
"httpx2>=2.5.0",
"pytest>=8.2",
"ruff>=0.6",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
codealmanac = [
"api/assets/*.html",
"api/assets/*.css",
"api/assets/*.js",
"api/assets/viewer/*.js",
]
"codealmanac.manual" = ["*.md"]
"codealmanac.prompts" = ["base/*.md", "operations/*.md"]
"codealmanac.cloud.setup" = ["*.md"]
[tool.uv]
package = true