-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (49 loc) · 2.05 KB
/
setup.py
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
from setuptools import setup, find_packages
# Read requirements.txt, ignore comments
try:
REQUIRES = list()
f = open("requirements.txt", "rb")
for line in f.read().decode("utf-8").split("\n"):
line = line.strip()
if "#" in line:
line = line[: line.find("#")].strip()
if line:
REQUIRES.append(line)
except:
print("'requirements.txt' not found!")
REQUIRES = list()
setup(
name="finrl",
version="0.3.0",
include_package_data=True,
author="Hongyang Yang, Xiaoyang Liu",
author_email="hy2500@columbia.edu",
url="https://github.com/finrl/finrl-library",
license="MIT",
packages=find_packages(),
#install_requires=REQUIRES,
install_requires=REQUIRES
+ ["pyfolio @ git+https://github.com/quantopian/pyfolio.git#egg=pyfolio-0.9.2"],
# dependency_links=['git+https://github.com/quantopian/pyfolio.git#egg=pyfolio-0.9.2'],
description="FinRL library, a Deep Reinforcement Learning library designed specifically for automated stock trading.",
long_description="""finrl is a Python library for that facilitates beginners to expose themselves to quantitative finance
and to develop their own trading strategies, it is developed by `AI4Finance`_.
FinRL has been developed under three primary principles: completeness, hands-on tutorial and reproducibility.
.. _AI4Finance: https://github.com/AI4Finance-LLC
""",
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
keywords="Reinforcment Learning",
platform=["any"],
python_requires=">=3.6",
)