forked from AI4Finance-Foundation/FinRL-Meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.48 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
from setuptools import find_packages
from setuptools import setup
REQUIRES = []
try:
with open("requirements.txt", "rb") as f:
REQUIRES = [line.strip() for line in f.read().decode("utf-8").split("\n")]
REQUIRES = [line for line in REQUIRES if "#" not in line]
except FileNotFoundError as myEx:
raise Exception(myEx)
setup(
name="finrl-meta",
version="0.3.7",
author="AI4Finance Foundation",
author_email="[email protected]",
url="https://github.com/AI4Finance-Foundation/FinRL-Meta",
license="MIT",
install_requires=REQUIRES,
description="FinRL-Meta: A Universe of Market Environments for Data-Driven Financial Reinforcement Learning",
packages=find_packages(),
long_description="FinRL-Meta: A Universe of Near Real Market Environments for Data-Driven Financial Reinforcement Learning",
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 :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
keywords="Reinforcment Learning",
platform=["any"],
python_requires=">=3.6",
)