forked from ib-api-reloaded/ib_async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (47 loc) · 1.47 KB
/
pyproject.toml
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
[tool.poetry]
name = "ib_async"
version = "1.0.1"
description = "Python sync/async framework for Interactive Brokers API"
authors = ["Ewald de Wit"]
maintainers = ["Matt Stancliff <[email protected]>"]
license = "BSD"
readme = "README.md"
repository = "https://github.com/ib-api-reloaded/ib_async"
include = ["ib_async/py.typed"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["ibapi", "tws", "asyncio", "jupyter", "interactive", "brokers", "async", "ib_async", "ib_insync"]
[tool.poetry.dependencies]
python = ">=3.10"
eventkit = "*"
nest_asyncio = "*"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ib-api-reloaded/ib_async/issues"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0"
pytest-asyncio = ">=0.23"
pandas = "^2.2.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx-autodoc-typehints = "^2.0.0"
sphinx-rtd-theme = "^2.0.0"
myst-parser = "^2.0.0"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode="auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"