-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
25 lines (22 loc) · 766 Bytes
/
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
import pathlib
import setuptools
long_description = (pathlib.Path(__file__).parent / "README.md").read_text()
setuptools.setup(
name="mqpy",
version="v0.6.9",
description="I developed this library to simplify the process of creating an Expert Advisor in MQL5. While developing in MQL5 can be complex, the same task is more streamlined in Python.",
author="Joao Paulo Euko",
license="MIT",
keywords=["metatrader5", "algotrading", "stock market"],
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
"metatrader5 == 5.0.4687",
"setuptools == 75.6.0",
],
entry_points={
"console_scripts": [
"mqpy = __main__:main",
],
},
)