-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.88 KB
/
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
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
[tool.poetry]
name = "mlfinpy"
version = "0.1.2"
description = "Mlfin.py is an Advance Machine Learning toolbox for financial applications."
license = "MIT"
authors = ["Robert Bach <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/baobach/mlfinpy"
documentation = "https://mlfinpy.readthedocs.io/en/latest/"
keywords= ["finance", "machine learning", "algorithmic trading", "quant", "investing"]
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
]
packages = [ {include = "mlfinpy"} ]
[tool.poetry.urls]
"Issues" = "https://github.com/baobach/mlfinpy/issues"
"Personal website" = "https://quantfin.net"
[tool.poetry.dependencies]
python = "^3.11"
numpy = ">=1.22,<1.27"
numba = "^0.60.0"
pandas = "^2.2.3"
scikit-learn = "^1.5.2"
scipy = "^1.14.1"
matplotlib = "^3.9.2"
statsmodels = "^0.14.4"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1"
pytest-cov = ">=4.0"
flake8 = "^4.0.1"
black = "^24.8.0"
isort = "^5.13.2"
pre-commit = "^3.8.0"
sphinx = "^8.0.2"
furo = "^2024.8.6"
[tool.poetry.extras]
optionals = ["scikit-learn"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"