-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.67 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.67 KB
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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
install_requires = [
'aiohttp==3.6.2', 'python-engineio==3.13.0', 'typing-extensions==3.7.4.3', 'iso8601', 'pytz',
'python-socketio[asyncio_client]==4.6.0', 'requests==2.24.0', 'websockets==8.1'
]
tests_require = [
'pytest', 'pytest-mock', 'pytest-asyncio', 'asynctest', 'aiohttp', 'responses', 'mock'
]
setuptools.setup(
name="metaapi_cloud_sdk",
version="9.1.0",
author="Agilium Labs LLC",
author_email="agiliumtrade@agiliumtrade.ai",
description="SDK for MetaApi, a professional cloud forex API which includes MetaTrader REST API "
"and MetaTrader websocket API. Supports both MetaTrader 5 (MT5) and MetaTrader 4 (MT4). CopyFactory"
"copy trading API included. (https://metaapi.cloud)",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords=['metaapi.cloud', 'MetaTrader', 'MetaTrader 5', 'MetaTrader 4', 'MetaTrader5', 'MetaTrader4', 'MT', 'MT4',
'MT5', 'forex', 'trading', 'API', 'REST', 'websocket', 'client', 'sdk', 'cloud', 'free', 'copy trading',
'copytrade', 'copy trade', 'trade copying'],
url="https://github.com/agiliumtrade-ai/metaapi-python-sdk",
include_package_data=True,
package_dir={'metaapi_cloud_sdk': 'lib'},
packages=['metaapi_cloud_sdk'],
install_requires=install_requires,
tests_require=tests_require,
license='SEE LICENSE IN LICENSE',
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)