forked from 20-18-15-14/SignalBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.15 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
[project]
name = "signal-osint-agent"
version = "0.1.0"
description = "Production-minded local MVP for a Signal-connected OSINT and retrieval assistant."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alembic>=1.16.0",
"fastapi>=0.115.0",
"httpx>=0.28.0",
"openai>=1.75.0",
"orjson>=3.10.0",
"pypdf>=4.2.0",
"pgvector>=0.3.6",
"pydantic-settings>=2.8.0",
"pydantic>=2.11.0",
"python-dotenv>=1.0.1",
"python-multipart>=0.0.9",
"psycopg[binary]>=3.2.0",
"sqlalchemy>=2.0.40",
"structlog>=25.2.0",
"tenacity>=9.1.0",
"typer>=0.15.0",
"uvicorn[standard]>=0.34.0",
"websockets>=15.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.26.0",
"pytest-cov>=6.1.0",
"ruff>=0.11.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[project.scripts]
signal-osint-agent = "app.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]