-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 744 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 744 Bytes
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
from setuptools import find_packages
from setuptools import setup
import pymt5adapter
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='pymt5adapter',
version=pymt5adapter.__version__.get('pymt5adapter'),
description='A drop in replacement wrapper for the MetaTrader5 package',
long_description_content_type='text/markdown',
long_description=readme,
author='nicholishen',
author_email='nicholishen@tutanota.com',
url='https://github.com/nicholishen/pymt5adapter',
license='MIT',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=['MetaTrader5==5.0.33'],
setup_requires=['wheel'],
python_requires='>=3.6',
)