-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·57 lines (52 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
executable file
·57 lines (52 loc) · 1.49 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "martin-binance"
authors = [{name = "Jerry Fedorenko", email = "jerry.fedorenko@yahoo.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers=["Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS"]
dynamic = ["version", "description"]
requires-python = ">=3.12"
dependencies = [
"exchanges-wrapper==2.1.47",
"aiofiles==25.1.0",
"aiocsv==1.4.0",
"apscheduler==3.11.2",
"betterproto==2.0.0b7",
"colorama==0.4.6",
"dash==4.0.0",
"inquirer==3.4.1",
"jsonpickle==4.1.1",
"libtmux==0.55.0",
"numpy~=2.4.2",
"optuna==4.7.0",
"orjson~=3.11.7",
"pandas==3.0.1",
"plotly==6.6.0",
"prometheus-client==0.24.1",
"psutil==7.2.2",
"pyarrow~=23.0.1",
"pymannkendall==1.4.3",
"requests==2.32.5",
"schedule~=1.2.2",
"scikit-learn==1.8.0",
"scipy==1.17.1",
"shortuuid~=1.0.13",
"toml~=0.10.2",
"tqdm==4.67.3",
"ujson~=5.11.0"
]
[tool.flit.module]
name = "martin_binance"
[project.urls]
Source = "https://github.com/DogsTailFarmer/martin-binance"
[project.scripts]
martin-binance-init = "martin_binance.__init__:init"
martin-binance-backtest = "martin_binance.backtest.OoTSP:main"