-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.16 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
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "coding-agent-telegram"
dynamic = ["version"]
description = "Telegram bot bridge for local coding agents (Codex/Copilot CLI)"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "DCHA" }]
dependencies = [
"python-telegram-bot>=21.0,<22.0",
"python-dotenv>=1.0.0,<2.0.0",
"portalocker>=2.8.2,<3.0.0",
]
[project.scripts]
coding-agent-telegram = "coding_agent_telegram.cli:main"
coding-agent-telegram-stt-install = "coding_agent_telegram.stt_setup:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
coding_agent_telegram = [
"resources/.env.example",
"resources/sensitive_path_globs.txt",
"resources/snapshot_excluded_dir_names.txt",
"resources/snapshot_excluded_dir_globs.txt",
"resources/snapshot_excluded_file_globs.txt",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
tag_regex = "^v(?P<version>.*)$"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"