-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.92 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mrstack"
version = "1.1.2"
description = "Proactive AI Butler for Claude Code — Telegram Bot with Memory, Jarvis Mode, and Daily Coaching"
readme = "README.en.md"
license = "MIT"
requires-python = ">=3.11"
authors = [{ name = "DD", email = "dd@thestack-ai.com" }]
keywords = ["claude", "telegram", "ai", "butler", "assistant", "jarvis"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Communications :: Chat",
]
dependencies = [
"typer>=0.9.0",
"rich>=13.0",
"psutil>=5.9",
]
# claude-code-telegram is installed separately from GitHub:
# uv tool install git+https://github.com/RichardAtCT/claude-code-telegram@latest
# mrstack init handles this automatically.
[project.urls]
Homepage = "https://github.com/thestack-ai/mrstack"
Repository = "https://github.com/thestack-ai/mrstack"
Issues = "https://github.com/thestack-ai/mrstack/issues"
[project.scripts]
mrstack = "mrstack.cli:app"
# ── Hatchling build config ─────────────────────────────
[tool.hatch.build.targets.wheel]
packages = ["mrstack"]
[tool.hatch.build.targets.wheel.force-include]
"src" = "mrstack/_overlay"
"config" = "mrstack/_data/config"
"schedulers" = "mrstack/_data/schedulers"
"templates" = "mrstack/_data/templates"
[tool.hatch.build.targets.sdist]
include = [
"mrstack/",
"src/",
"config/",
"schedulers/",
"templates/",
"pyproject.toml",
"README.md",
"README.en.md",
"LICENSE",
]