-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 2.15 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
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "ibc-api"
version = "0.1.0"
description = "An unofficial Python API client for the Interactive Brokers Client Portal Web API."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Alex Reed", email = "coding.sigma@gmail.com" }]
keywords = ["interactive-brokers", "trading", "finance", "api", "client-portal"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = ["requests>=2.33.1", "fake-useragent>=2.2.0", "tenacity>=9.1.4"]
[project.optional-dependencies]
async = ["httpx>=0.28.1", "websockets>=16.0"]
docs = ["mkdocs>=1.6.1", "mkdocs-material>=9.7.6", "mkdocstrings[python]>=1.0.4"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.1.0",
"ruff>=0.15.12",
"mypy>=1.20.2",
"types-requests>=2.32.4.20260324",
]
[project.urls]
Homepage = "https://github.com/areed1192/interactive-brokers-api"
Repository = "https://github.com/areed1192/interactive-brokers-api"
Issues = "https://github.com/areed1192/interactive-brokers-api/issues"
[tool.setuptools.packages.find]
include = ["ibc", "ibc.*"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["B018"]
"samples/**/*.py" = ["F841"]
[tool.mypy]
strict = false
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
disable_error_code = [
"assignment",
"return-value",
]