forked from AI4Finance-Foundation/FinRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.6 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
[tool.poetry]
name = "finrl"
version = "0.3.6"
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 :: 3.10",
"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.10"
elegantrl = {git="https://github.com/AI4Finance-Foundation/ElegantRL.git#egg=elegantrl"}
alpaca-trade-api = "^3"
ccxt = "^3"
exchange-calendars = "^4"
jqdatasdk = "^1"
pyfolio = "^0.9"
pyportfolioopt = "^1"
ray = {extras=["default", "tune"], version = "^2"}
scikit-learn = "^1"
stable-baselines3 = {version = ">=2.0.0a5", extras = ["extra"]}
stockstats = "^0.5"
wrds = "^3"
yfinance = "^0.2"
[tool.poetry.group.dev.dependencies]
black = "^23"
isort = "^5"
jupyter = "^1"
mypy = "^1"
pandas-stubs = "^2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"