-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.74 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "heysquid"
version = "0.1.0"
description = "Your personal PM agent — Telegram-connected project manager"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{name = "Sanghyuk Yoon", email = "hyuk@hype5.co.kr"},
]
keywords = ["ai", "agent", "telegram", "project-manager", "claude", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"python-telegram-bot>=20.0",
"python-dotenv>=1.0.0",
"requests>=2.28.0",
]
[project.optional-dependencies]
slack = ["slack-bolt>=1.18.0", "slack-sdk>=3.21.0"]
discord = ["discord.py>=2.3.0"]
dashboard = ["playwright>=1.40.0"]
trading = ["ccxt>=4.0.0", "pandas>=2.0.0", "ta>=0.10.0"]
tui = ["textual>=0.40.0"]
all = ["heysquid[slack,discord,dashboard,tui]"]
[project.urls]
Homepage = "https://github.com/devpnko/heysquid"
Repository = "https://github.com/devpnko/heysquid"
Documentation = "https://github.com/devpnko/heysquid/tree/main/docs"
Issues = "https://github.com/devpnko/heysquid/issues"
[project.scripts]
heysquid = "heysquid.core.cli:main"
[tool.setuptools.packages.find]
include = ["heysquid*"]
exclude = ["private*", "tests*"]
[tool.setuptools.package-data]
heysquid = [
"templates/**/*",
".env.example",
]