-
Notifications
You must be signed in to change notification settings - Fork 1k
/
setup.py
96 lines (87 loc) · 3.38 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright 2021 The TensorTrade Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
import sys
import os
from setuptools import find_packages, setup
if sys.version_info.major != 3:
raise NotImplementedError("TensorTrade is only compatible with Python 3.")
tensortrade_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(tensortrade_directory, 'tensortrade', 'version.py'), 'r') as filehandle:
for line in filehandle:
if line.startswith('__version__'):
version = line[15:-2]
setup(
name='tensortrade',
version=version,
description='TensorTrade: A reinforcement learning library for training, evaluating, and deploying robust trading agents.',
long_description='TensorTrade: A reinforcement learning library for training, evaluating, and deploying robust trading agents.',
long_description_content_type='text/markdown',
author='Adam King <[email protected]>, Matthew Brulhardt <[email protected]>',
maintainer='Carlo Grisetti <[email protected]>',
url='https://github.com/tensortrade-org/tensortrade',
packages=[
package for package in find_packages(exclude=('tests', 'docs'))
if package.startswith('tensortrade')
],
license='Apache 2.0',
python_requires='>=3.11.9',
install_requires=[
'numpy>=1.17.0',
'pandas>=0.25.0',
'gymnasium>=0.28.1',
'pyyaml>=5.1.2',
'stochastic>=0.6.0',
'tensorflow>=2.7.0',
'ipython>=7.12.0',
'matplotlib>=3.1.1',
'plotly>=4.5.0',
'deprecated>=1.2.13'
],
extras_require={
'tests': [
'pytest>=5.1.1',
'ta>=0.4.7'
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
'sphinxcontrib.apidoc',
'nbsphinx',
'nbsphinx_link',
'recommonmark',
'sphinx_markdown_tables',
'ipykernel'
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.11',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Office/Business :: Financial',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Distributed Computing',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False
)