-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (94 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (94 loc) · 2.41 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
99
100
101
102
103
104
105
106
[project]
name = "synix"
description = "Build system for agent memory"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Mark Lubin" }
]
keywords = ["agent", "memory", "build-system", "llm"]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"click>=8.0",
"pydantic>=2.0",
"rich>=13.0",
"anthropic>=0.40.0",
"openai>=1.0",
"python-dotenv>=1.0",
"fastembed>=0.4",
"pyyaml>=6.0",
]
[project.optional-dependencies]
mesh = [
"starlette>=0.40",
"uvicorn[standard]>=0.30",
"httpx>=0.27",
]
mcp = [
"mcp[cli]>=1.0",
]
server = [
"starlette>=0.40",
"uvicorn[standard]>=0.30",
"mcp[cli]>=1.0",
]
viewer = ["flask>=3.0"]
[project.scripts]
synix = "synix.cli.main:cli"
release = "synix.dev:release"
verify-demos = "synix.dev:verify_demos"
[project.urls]
Homepage = "https://github.com/marklubin/synix"
Repository = "https://github.com/marklubin/synix"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/synix"]
[tool.hatch.version]
path = "src/synix/__init__.py"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.9.0",
"mcp[cli]>=1.0",
"flask>=3.0",
{include-group = "mesh-dev"},
]
mesh-dev = [
"starlette>=0.40",
"uvicorn[standard]>=0.30",
"httpx>=0.27",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"mesh: mesh distributed build tests",
"live_agent: live agent tests requiring OPENAI_API_KEY or ANTHROPIC_API_KEY",
]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = [
"E741", # ambiguous variable name
"B023", # function definition in loop (closures work correctly here)
"B905", # zip() without strict= (pre-existing, not a bug)
"SIM102", "SIM103", "SIM105", "SIM108", "SIM115", "SIM117",
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["F841", "B007", "B011", "E501", "E731"]
"templates/**" = ["E501"]
"src/synix/search/embeddings.py" = ["E402"] # imports after warning suppression