forked from cuemacro/finmarketpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ __pycache__/ | |
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
dist*/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
from setuptools import setup, find_packages | ||
|
||
long_description = """finmarketpy is a Python based library that enables you to analyze market data and also to backtest | ||
trading strategies using a simple to use API, which has prebuilt templates for you to define backtest.""" | ||
|
||
setup(name='finmarketpy', | ||
version='0.11', | ||
description='Trading Backtest library', | ||
version='0.11.1', | ||
description='finmarketpy is a Python based library for backtesting trading strategies', | ||
author='Saeed Amen', | ||
author_email='[email protected]', | ||
license='Apache 2.0', | ||
long_description=long_description, | ||
keywords = ['trading', 'markets', 'currencies', 'pandas', 'data', 'Bloomberg', 'tick', 'stocks', 'equities'], | ||
url = 'https://github.com/cuemacro/finmarketpy', | ||
packages = find_packages(), | ||
|