-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (50 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
52 lines (50 loc) · 1.27 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
[build-system]
requires = ["setuptools>=42.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MLTT"
version = "1.19.8"
description = "Machine Learning Trading Toolkit"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Vlad Kochetov", email = "vladkoch@knu.ua"},
]
license = {text = "Custom"}
keywords = [
"trading",
"portfolio-management",
"algorithmic-trading",
"risk-management",
"quantitative-analysis",
"machine-learning",
"trading-strategies",
"quantitative-finance",
"financial-modeling",
"financial-analysis",
"financial-engineering",
"quantitative-investing",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry"
]
dependencies = [
"numpy>=1.23.0",
"binance-historical-data>=0.1.13",
"pyriemann>=0.6",
"torch>=2.5.1",
"tsfel>=0.1.9",
"polars[numpy,gpu,async,plot]>=1.2.1",
"ccxt>=4.4.36",
"hurst>=0.0.5",
"pydantic>=2.10.2",
"matplotlib>=3.8.0",
"allocation-o2>=1.0.2",
"DeFiLlama>=2.3.0",
"catboost>=1.2.8"
]
[tool.setuptools]
packages = {find = {exclude = ["research", "tests", "examples", "MLTT/tests", "private"]}}
zip-safe = false