forked from wrighter/ib-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 754 Bytes
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ib-scripts"
version = "1.0.0"
description = "Scripts for use with Interactive Brokers TWS"
readme = "README.md"
authors = [{ name = "Matt Wright", email = "matt@wrighters.net" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["interactive", "brokers", "finance"]
dependencies = [
"pandas",
"numpy",
"python-dateutil",
"ibapi"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["pip-tools"]
[project.urls]
Homepage = "https://github.com/wrighter/ib-scripts"