Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
add back requirements.txt for rtd
Browse files Browse the repository at this point in the history
  • Loading branch information
glennklockwood committed Oct 15, 2018
1 parent 2db1409 commit 17cb7f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
h5py>=2.7
matplotlib>=2.0.0
numpy>=1.13
pandas>=0.20
scipy>=0.19
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,10 @@

RELEASE = False # set to True when building a release distribution

REQUIREMENTS = [
"h5py>=2.7",
"matplotlib>=2.0.0",
"numpy>=1.13",
"pandas>=0.20",
"scipy>=0.19",
]

DOCLINES = (__doc__ or '').split("\n")
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
DOCLINES = (__doc__ or '').split("\n")
REQUIREMENTS = open(os.path.join(BASE_DIR, 'requirements.txt'), 'r').readlines()

if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
Expand Down

0 comments on commit 17cb7f7

Please sign in to comment.