-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
39 lines (35 loc) · 1.48 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
install_requires = [
'aiohttp==3.7.4', 'typing-extensions~=3.10.0.0', 'iso8601', 'pytz', 'requests==2.24.0', 'httpx==0.23.0'
]
tests_require = [
'pytest==6.2.5', 'pytest-mock', 'pytest-asyncio==0.16.0', 'asynctest', 'aiohttp', 'mock', 'freezegun==1.0.0',
'respx==0.19.2'
]
setuptools.setup(
name="metaapi_cloud_copyfactory_sdk",
version="6.1.1",
author="MetaApi DMCC",
author_email="support@metaapi.cloud",
description="Python SDK for SDK for CopyFactory trade copying API. Can copy trades both between MetaTrader 5 "
"(MT5) and MetaTrader 4 (MT4). (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', 'copy trading', 'API', 'REST', 'client', 'sdk', 'cloud'],
url="https://github.com/agiliumtrade-ai/copyfactory-python-sdk",
include_package_data=True,
package_dir={'metaapi_cloud_copyfactory_sdk': 'lib'},
packages=['metaapi_cloud_copyfactory_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',
)