forked from ssdavidai/alfred
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1020 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 1020 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
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alfred-vault"
version = "0.3.1"
description = "Personal agentic infrastructure. Self-hosted. Always on."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
"httpx>=0.27",
"python-frontmatter>=1.1",
"structlog>=24.0",
"watchdog>=4.0",
"rich>=13.0",
"textual>=0.89",
]
[project.optional-dependencies]
temporal = ["temporalio>=1.9.0"]
surveyor = [
"pymilvus[milvus_lite]>=2.4",
"scikit-learn>=1.4",
"leidenalg>=0.10",
"igraph>=0.11",
"numpy>=1.26",
"openai>=1.30",
]
all = ["alfred-vault[surveyor]", "alfred-vault[temporal]"]
[project.urls]
Homepage = "https://github.com/ssdavidai/alfred"
Repository = "https://github.com/ssdavidai/alfred"
[project.scripts]
alfred = "alfred.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/alfred"]
[tool.hatch.build.targets.sdist]
include = ["src/alfred/", "README.md", "LICENSE"]