-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 793 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stockbot"
version = "0.1.0"
description = "Weekly value-scoring assistant for equities"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Baldari.dev"}
]
license = {text = "MIT"}
dependencies = [
"openai>=1.14.0,<2.0.0",
"yfinance>=0.2.28,<0.3.0",
"pandas>=2.2.0,<3.0.0",
"psycopg[binary]>=3.1.18,<4.0.0",
"python-dotenv>=1.0.1,<2.0.0",
"requests>=2.31.0,<3.0.0",
"tavily-python>=0.3.3,<1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0,<9.0.0",
"pytest-asyncio>=0.23.0,<0.24.0",
"pytest-mock>=3.14.0,<4.0.0",
"black>=24.4.0,<25.0.0",
"flake8>=7.0.0,<8.0.0"
]
[tool.black]
line-length = 88
target-version = ["py311"]