-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
32 lines (30 loc) · 1007 Bytes
/
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
[project]
name = "ibind"
version = "0.1.7"
authors = [
{ name="Voy Zan", email="[email protected]" },
]
description = "IBind is a REST and WebSocket client library for Interactive Brokers Client Portal Web API."
readme = "README.md"
requires-python = ">=3.8"
license={ file = "LICENSE" }
dependencies = [
"requests==2.31.*",
"websocket-client==1.7.*"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
]
keywords=['interactive brokers', 'rest api', 'python api', 'ibkr python api', 'ibkr web api', 'ib api', 'ibkr api', 'algo trading', 'algorithmic trading', 'quant', 'trading']
[project.urls]
Homepage = "https://github.com/Voyz/ibind"
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"