Skip to content

Commit

Permalink
updated docs, included docs requirements & fixed requirements parse
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvaro Bartolome committed Mar 13, 2020
1 parent 2c7579f commit 3cf43e1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sphinx==2.4.4
sphinx_rtd_theme==0.4.3
recommonmark==0.6.0
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Usage
=====

**pyrtfolio** usage is pretty simple, since until the current release (0.1), just the StockPortfolios are
**pyrtfolio** usage is pretty simple, since until the current release (0.2), just the StockPortfolios are
available with the basic data. So on, the one and only usage that can be currently done with this package consists on
generating portfolios for the introduced stocks.

Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pandas==1.0.1
pandas==0.25.3
investpy==0.9.14
sphinx_rtd_theme==0.4.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def readme():

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

0 comments on commit 3cf43e1

Please sign in to comment.