forked from 0xAstroAlpha/Claude-Code-Telegram-Boss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
80 lines (70 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "claude-code-telegram"
version = "0.2.0"
description = "Telegram bot for remote Claude Code access with enhanced features"
authors = ["Brian Le <lhda.eth@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yourusername/claude-code-telegram-boss"
repository = "https://github.com/yourusername/claude-code-telegram-boss"
documentation = "https://github.com/yourusername/claude-code-telegram-boss/blob/main/docs/"
keywords = ["telegram", "bot", "claude", "ai", "development", "remote", "coding"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Tools",
"Topic :: System :: Shells",
]
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
python-telegram-bot = "^22.1"
structlog = "^25.4.0"
pydantic = "^2.11.5"
pydantic-settings = "^2.9.1"
python-dotenv = "^1.0.0"
aiofiles = "^24.1.0"
aiosqlite = "^0.21.0"
anthropic = "^0.40.0"
claude-code-sdk = "^0.0.11"
pygments = "^2.17.0" # For syntax highlighting
[tool.poetry.scripts]
claude-telegram-bot = "src.main:run"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.0"
pytest-asyncio = "^1.0.0"
pytest-cov = "^6.1.1"
pytest-mock = "^3.14.1"
black = "^25.1.0"
isort = "^6.0.1"
flake8 = "^7.2.0"
mypy = "^1.16.0"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-v --cov=src --cov-report=html --cov-report=term-missing"
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]