Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AminHP committed Sep 7, 2021
1 parent ed9fa0c commit 67f5fb6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup, find_packages

setup(
name='gym_mtsim',
version='1.0.0',
packages=find_packages(),

author='AminHP',
author_email='[email protected]',

install_requires=[
'gym>=0.19.0',
'numpy>=1.19.5',
'scipy>=1.7.1',
'pandas>=1.3.1',
'matplotlib>=3.4.2',
'plotly>=5.3.1',
'nbformat>=5.1.3',
'pathos>=0.2.8',
'MetaTrader5>=5.0.35',
],

package_data={
'gym_mtsim': ['data/*.pkl']
}
)

0 comments on commit 67f5fb6

Please sign in to comment.