Skip to content

Commit

Permalink
deploy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
traderpedroso committed May 20, 2023
1 parent f2da7bc commit f11dad7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 24 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ pip install ejtraderMT -U

for developers attention may contain countless bugs
```
git clone https://github.com/traderpedroso/ejtraderMT
git clone https://github.com/ejtraderLabs/ejtraderMT
cd ejtraderMT
python setup.py install
or
pip install git+https://github.com/ejtraderLabs/ejtraderMT.git
```


Expand Down
57 changes: 34 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,31 @@


def readme():
with io.open('README.md', encoding='utf-8') as f:
with io.open("README.md", encoding="utf-8") as f:
return f.read()


def requirements(filename):
reqs = list()
with io.open(filename, encoding='utf-8') as f:
with io.open(filename, encoding="utf-8") as f:
for line in f.readlines():
reqs.append(line.strip())
return reqs


setup(
name='ejtraderMT',
version='3.13',
name="ejtraderMT",
version="3.14",
packages=find_packages(),
url='https://ejtraderMT.readthedocs.io/',
download_url='https://ejtrader.com',
license='GPL-3.0',
author='Emerson Pedroso',
author_email='[email protected]',
description='Metatrader API',
url="https://ejtraderMT.readthedocs.io/",
download_url="https://ejtrader.com",
license="GPL-3.0",
author="Emerson Pedroso",
author_email="[email protected]",
description="Metatrader API",
long_description=readme(),
long_description_content_type='text/markdown',
install_requires=requirements(filename='requirements.txt'),
long_description_content_type="text/markdown",
install_requires=requirements(filename="requirements.txt"),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3 :: Only",
Expand All @@ -40,18 +41,28 @@ def requirements(filename):
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries"
"Topic :: Software Development :: Libraries",
],
python_requires='>=3',
keywords=', '.join([
'metatrader', 'f-api', 'historical-data',
'financial-data', 'stocks', 'funds', 'etfs',
'indices', 'currency crosses', 'bonds', 'commodities',
'crypto currencies'
]),
python_requires=">=3",
keywords=", ".join(
[
"metatrader",
"f-api",
"historical-data",
"financial-data",
"stocks",
"funds",
"etfs",
"indices",
"currency crosses",
"bonds",
"commodities",
"crypto currencies",
]
),
project_urls={
'Bug Reports': 'https://github.com/traderpedroso/ejtraderMT/issues',
'Source': 'https://github.com/traderpedroso/ejtraderMT',
'Documentation': 'https://ejtrader.readthedocs.io/'
"Bug Reports": "https://github.com/traderpedroso/ejtraderMT/issues",
"Source": "https://github.com/traderpedroso/ejtraderMT",
"Documentation": "https://ejtrader.readthedocs.io/",
},
)

0 comments on commit f11dad7

Please sign in to comment.