forked from cookiecad/session-siphon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 746 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
[project]
name = "session-siphon"
version = "0.1.0"
description = "Centralized logging and search for AI coding assistant conversations"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"watchdog>=4.0.0",
"typesense>=0.21.0",
"pyyaml>=6.0",
"click>=8.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.4.0",
]
[project.scripts]
siphon-collector = "session_siphon.collector.__main__:main"
siphon-processor = "session_siphon.processor.__main__:main"
siphon-search = "session_siphon.search.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]