-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 848 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 848 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
[project]
name = "stockidea"
version = "0.1.0"
description = "Stock price analysis and reporting tool"
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.42.0",
"asyncpg>=0.29.0",
"openai>=1.60.0",
"click>=8.1.0",
"fastapi>=0.115.0",
"greenlet>=3.0.0",
"httpx>=0.27.0",
"numpy>=2.0.0",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"scipy>=1.14.0",
"simpleeval>=0.9.14",
"sqlalchemy>=2.0.0",
"types-requests>=2.32.4.20260107",
"uvicorn>=0.34.0",
"alembic>=1.18.4",
"bs4>=0.0.2",
"python-telegram-bot>=21.0",
]
[project.scripts]
stockidea = "stockidea.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/stockidea"]
[dependency-groups]
dev = [
"mypy>=1.20.1",
"ruff>=0.15.10",
]