forked from AI4Finance-Foundation/FinRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.66 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
[tool.poetry]
name = "finrl"
version = "0.3.5"
description = "FinRL: Financial Reinforcement Learning Framework. Version 0.3.5 notes: stable version, code refactoring, more tutorials, clear documentation"
authors = ["Hongyang Yang, Xiaoyang Liu"]
license = "MIT"
readme = "README.md"
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords=["Reinforcement Learning", "Finance"]
[tool.poetry.urls]
github = "https://github.com/finrl/finrl-library"
[tool.poetry.dependencies]
python = ">=3.7,<3.9"
pyfolio = {git="https://github.com/quantopian/pyfolio.git#egg=pyfolio-0.9.2"}
elegantrl = {git="https://github.com/AI4Finance-Foundation/ElegantRL.git#egg=elegantrl"}
alpaca_trade_api = ">=2.1.0"
ccxt = ">=1.66.32"
exchange_calendars = "3.6.3"
gputil = "*"
gym = ">=0.17"
importlib-metadata = "4.13.0"
jqdatasdk = "*"
lz4 = "*"
matplotlib = "*"
pandas = ">=1.1.5"
numpy = ">=1.17.3"
tensorboardX = "*"
yfinance = "*"
stockstats = ">=0.4.0"
scikit-learn = ">=0.21.0"
ray = {extras=["default", "tune"], version="1.3.0"}
stable-baselines3 = "^1.6.2"
[tool.poetry.dev-dependencies]
pytest = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"