-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (82 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
96 lines (82 loc) · 2.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools-scm>=8"]
[project]
authors = [
{name = "t1user", email = "enterdragon@duck.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial :: Investment",
"Licence :: OSI Approved :: BSD Licence",
"Programming Language :: Python :: 3",
]
dependencies = [
"arctic @ git+https://github.com/man-group/arctic.git@3cf2a9ce3a7f2c2544ececd20d0f4f5b917f7b2a",
"ib_insync==0.9.86",
"pandas==2.3.3",
"pandas-market-calendars==5.1.1",
"numba==0.65.0",
"pyyaml==6.0.3",
"tqdm==4.67.1",
"types-tqdm==4.67.0.20250809",
]
description = 'Framework for trading with Interactive Brokers through ib_insync'
dynamic = ["version"]
keywords = ["ib_insync", "tws", "ibgateway", "asyncio", "interactive brokers", "algo trading"]
name = "haymaker"
readme = "README.md"
requires-python = ">= 3.11, <3.13"
[project.optional-dependencies]
docs = [
"sphinx==8.2.3",
"sphinx-autodoc-typehints==3.5.2",
"sphinx-argparse==0.5.2",
"furo==2025.9.25",
]
dev = [
"haymaker[docs]",
"types-pyyaml==6.0.3",
"pandas-stubs==2.3.2.250926",
"numpy==2.3.4",
"isort==7.0.0",
"mypy==1.18.2",
"autopep8==2.3.2",
"yapf==0.43.0",
"black==26.3.1",
"flake8==7.3.0",
"pytest<9",
"pytest-asyncio==1.3.0",
"mongomock==4.3.0"
]
notebook = [
"jupyter==1.1.1",
"matplotlib==3.10.7",
"pyfolio-reloaded==0.9.9",
]
all = ["haymaker[dev,notebook]"]
[tool.setuptools]
packages = ["haymaker"]
[project.urls]
Repository = "https://github.com/t1user/haymaker"
[project.scripts]
dataloader = "haymaker.dataloader.dataloader:start"
[tool.setuptools_scm]
version_file = "haymaker/_version.py"
[tool.isort]
profile = "black"
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/stubs"
disable_error_code = ["return"]
# check_untyped_defs = true
# remove this after fixing backtester
[[tool.mypy.overrides]]
ignore_errors = true
module = "backtester"
[tool.pytest]
testpaths = "tests"
python_files = "test_*.py"
[tool.pytest.ini_options]
addopts = ["-p", "no:warnings"]
asyncio_mode = "auto"