-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (30 loc) · 1.27 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
from setuptools import setup, find_packages, find_namespace_packages
import sys, os.path
# Don't import gym module here, since deps may not be installed
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'fingym'))
setup(
name = 'fingym',
version = '1.0',
license='apache-2.0',
description = 'A tool for developing reinforcement learning algorithms focused in stock prediction',
author = 'Juan Acevedo',
author_email = '[email protected]',
url = 'https://github.com/entrpn/fingym/',
download_url = 'https://github.com/entrpn/fingym/archive/v1.0.tar.gz',
keywords = ['stock-market', 'stock-price-prediction', 'python','reinforcement-learning-environments','reinforcement-learning','reinforcement-learning-agents','artificial-intelligence','q-learning','evolution-strategies'],
packages=find_namespace_packages(),
package_data={'fingym': ['data/*.csv']},
install_requires=[
'pandas',
'numpy',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)