-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (59 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
75 lines (59 loc) · 1.65 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
[tool.poetry]
name = "icli"
version = "2.0.0"
description = "ibkr cli et al"
authors = ["Matt Stancliff <matt@genges.com>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
# IB API wrapper with better usability than the IBKR-provided libs
ib_async = ">=2.0.1"
# ib_async = { path = "../../ibkr/ib_insync", develop = true }
# nice printing and data manipulation
pandas = ">2.1.0"
# easy time access
# running / logging
prompt-toolkit = "^3.0.29"
loguru = ">0.6.0"
# for multi-step cli prompts
questionary = "^2.0.1"
tableprint = "^0.9.1"
# for ANSI console color gradients
seaborn = "^0.12.2"
# for showing nice things
prettyprinter = "^0.18.0"
setproctitle = "^1.2.2"
# saving things and converting IBKR HTML news into readable text
diskcache = "^5.2.1"
beautifulsoup4 = "^4.9.3"
# our API helpers and wrappers
# tradeapis = { path = "../clients/", develop = true }
tradeapis = { git = "https://github.com/mattsta/tradeapis.git", tag="3.4.6" }
schedule = "^1.1.0"
httpx = "^0.28.1"
whenever = "^0.6.9"
python-dateutil = "^2.9.0.post0"
[tool.poetry.scripts]
icli = "icli.__main__:runit"
[tool.poetry.group.dev.dependencies]
mypy = "^1.18.2"
data-science-types = "^0.2.23"
types-pytz = "^2025.2.0.20250809"
pandas-stubs = "^2.3.2.250926"
types-cachetools = "^6.2.0.20250827"
[tool.mypy]
check_untyped_defs = true
show_traceback = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
extend-select = [
# convert legacy python syntax to modern syntax
"UP",
# isort imports
"I",
]
ignore = ["E402"] # Ignore Module level import not at top of file