-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update requirements.txt, setup.py and README.md to reflect beta state
- Loading branch information
Michael Chu
committed
Sep 30, 2020
1 parent
97624bf
commit 437cca1
Showing
3 changed files
with
7 additions
and
5 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
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,8 +1,4 @@ | ||
# It is recommended to install Miniconda3 for Python 3.6.1 and Pandas | ||
pandas>=0.23.1 | ||
enum34; python_version <= '2.7' | ||
pathlib2; python_version <= '2.7' | ||
pytest>=3.10.0 | ||
numpy>=1.14.3 | ||
pyprind>=2.11.2 | ||
psutil>=5.4.8 |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
description="Python Backtesting library for options trading strategies", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
version="1.0.4", | ||
version="2.0.0b1", | ||
url="https://github.com/michaelchu/optopsy", | ||
author="Michael Chu", | ||
author_email="[email protected]", | ||
|
@@ -16,4 +16,8 @@ | |
"Programming Language :: Python :: 3.6", | ||
], | ||
packages=["optopsy"], | ||
install_requires=[ | ||
'pandas', | ||
'numpy' | ||
] | ||
) |