Skip to content

Commit 437cca1

Browse files
author
Michael Chu
committed
Update requirements.txt, setup.py and README.md to reflect beta state
1 parent 97624bf commit 437cca1

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
Optopsy is a nimble backtesting and statistics library for option strategies, it is designed to answer questions like
88
"How do vertical spreads perform on the SPX?" or "Which strikes and/or expiration dates should I choose to make the most potential profit?"
99

10+
**This library is currently being rewritten and is in beta state, use at your own risk**
11+
1012
## Supported Option Strategies
1113
* Calls/Puts
1214
* Straddles/Strangles (WIP)

requirements.txt

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
# It is recommended to install Miniconda3 for Python 3.6.1 and Pandas
22
pandas>=0.23.1
3-
enum34; python_version <= '2.7'
4-
pathlib2; python_version <= '2.7'
53
pytest>=3.10.0
64
numpy>=1.14.3
7-
pyprind>=2.11.2
8-
psutil>=5.4.8

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
description="Python Backtesting library for options trading strategies",
66
long_description=open("README.md").read(),
77
long_description_content_type="text/markdown",
8-
version="1.0.4",
8+
version="2.0.0b1",
99
url="https://github.com/michaelchu/optopsy",
1010
author="Michael Chu",
1111
author_email="[email protected]",
@@ -16,4 +16,8 @@
1616
"Programming Language :: Python :: 3.6",
1717
],
1818
packages=["optopsy"],
19+
install_requires=[
20+
'pandas',
21+
'numpy'
22+
]
1923
)

0 commit comments

Comments
 (0)