-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (51 loc) · 1.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
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "logy"
version = "0.1.0"
description = "Terminal-first professional memory for builders."
requires-python = ">=3.12"
dependencies = [
"typer>=0.12",
"rich>=13.0",
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"sqlmodel>=0.0.16",
"alembic>=1.13",
"litellm>=1.40",
"cognee>=0.1.0",
"networkx>=3.3",
"httpx>=0.27",
"pydantic-settings>=2.3",
]
[tool.setuptools.packages.find]
include = ["apps*", "packages*"]
[tool.uv]
package = true
[project.scripts]
logy = "apps.cli.main:app"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
"pre-commit>=3.7",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[dependency-groups]
dev = [
"pre-commit>=4.6.0",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"ruff>=0.15.20",
]