-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 998 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "athenaclaw"
version = "0.1.0"
description = "Persistent personal investment research agent"
requires-python = ">=3.10"
dependencies = [
"openai>=1.0",
"pandas>=2.0",
"pandas-ta",
"tushare",
"yfinance>=0.2.40",
"python-dotenv",
"PyYAML>=6.0",
"textual>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-bdd>=7.0",
]
telegram = [
"python-telegram-bot>=22.6",
]
discord = [
"discord.py>=2.4",
]
finnhub = [
"finnhub-python>=2.4.20",
]
[project.scripts]
athenaclaw = "athenaclaw.interfaces.cli:main"
athenaclaw-telegram = "athenaclaw.interfaces.telegram:main"
athenaclaw-discord = "athenaclaw.interfaces.discord:main"
athenaclaw-worker = "athenaclaw.automation.worker:main"
athenaclaw-harness = "athenaclaw.harness:main"
[tool.hatch.build.targets.wheel]
packages = ["src/athenaclaw"]
[tool.pytest.ini_options]
testpaths = ["tests"]