forked from samuraitaiga/py-metatrader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1.19 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
# coding: utf-8
'''
Created on 2015/02/20
@author: samuraitaiga
'''
version = '0.0.1'
def readme():
with open("README.rst") as f:
return f.read()
from distutils.core import setup
setup(name='metatrader',
version = version,
description="MetaTrader4 Libraries easily backtest and optimization from python",
long_description = readme(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
],
keywords='MetaTrader mt5 mql',
author='samuraitaiga',
author_email='[email protected]',
url='https://github.com/samuraitaiga/py-metatrader',
license='MIT',
packages=['metatrader',
],
install_requires=['future', 'beautifulsoup4'],
tests_require=[
'nose',
],
test_suite='test',
)