-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 1.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "auto_rsa_bot"
version = "2.2.0"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"bbae-invest-api==0.1.5",
"chaseinvest-api==0.4.7",
"cryptography>=46.0.3",
"curl-cffi==0.15.0",
"discord-py==2.7.1",
"dspac-invest-api==0.1.4",
"email-validator>=2.3.0",
"fennel-invest-api==2.0.1",
"fidelity-api==0.0.16",
"firstrade==0.0.38",
"nodriver==0.47.0",
"paho-mqtt>=2.1.0",
"publicdotcom-py==0.1.18",
"pyotp==2.10.0",
"python-dotenv==1.2.2",
"pytz>=2025.2",
"requests==2.33.1",
"schwab-api2>=0.3.0",
"selenium-stealth==1.0.6",
"setuptools<84",
"tastytrade==12.4.1",
"typer>=0.20.0",
"vanguard-api==0.3.3",
]
[dependency-groups]
dev = [
"ruff>=0.13.3",
"ty>=0.0.11",
"types-requests>=2.32.4.20250913",
]
[project.scripts]
auto_rsa_bot = "src.cli:app"
[tool.uv]
package = true
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "src"
module-root = "."
[tool.ruff]
target-version = "py312"
extend = "./styles/ruff.toml"
include = ["src/*"]
exclude = ["src/vendors/*", "docs/*"]
[tool.ruff.lint]
ignore = [
"BLE001", # Allow blind exception catch
"T201", # Allow prints
"TRY002", # Create own exception
"TRY301", # Allow raising exceptions
"DOC201", # Don't require returns in doc
"DOC501", # Don't require raises in doc
]
[tool.ruff.lint.per-file-ignores]
"src/brokerages/*" = [
"PLR0913", # Allow too many arguments
"PLR1702", # Allow many nested blocks
]
[tool.ty.environment]
root = ["src"]
python-version = "3.12"
[tool.ty.src]
exclude = ["src/vendors/*", "docs/*"]