-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.34 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nightwire"
version = "2.4.2"
description = "A Signal messaging bot with Claude, Codex, or OpenCode integration for intelligent conversations and autonomous development"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "hackingdave"},
]
dependencies = [
"aiohttp>=3.8",
"anthropic>=0.18",
"pydantic>=2.0",
"PyYAML>=6.0",
"python-dotenv>=1.0",
"structlog>=23.0",
"sentence-transformers>=2.2.0",
"psutil>=5.9",
"sqlite-vec>=0.1.1",
]
[project.urls]
Repository = "https://github.com/hackingdave/nightwire"
"Bug Tracker" = "https://github.com/hackingdave/nightwire/issues"
[project.scripts]
nightwire = "nightwire.main:run"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"black>=23.0",
"ruff>=0.1",
"psutil>=5.9",
"mypy>=1.0",
"bandit>=1.7",
"safety>=2.3",
]
[tool.setuptools.packages.find]
include = ["nightwire*"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.bandit]
exclude_dirs = ["tests", "venv"]
skips = ["B101"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]