Skip to content

Commit

Permalink
Freeze required package versions
Browse files Browse the repository at this point in the history
Fixes issue with installing latest version of bx-python, which requires
python-lzo, which does not seem to install nicely.
  • Loading branch information
welchr committed Mar 3, 2018
1 parent 8f8f04c commit 36b18e1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include README.md
include requirements.txt
12 changes: 12 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
appdirs==1.4.3
bx-python==0.7.3
numpy==1.14.0
pandas==0.22.0
pysam==0.13
python-dateutil==2.6.1
pytz==2017.3
PyYAML==3.12
six==1.11.0
termcolor==1.1.0
toolz==0.9.0
tqdm==4.19.5
12 changes: 1 addition & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,7 @@

long_description = open("README.md").read(),

install_requires = [
"termcolor",
"pandas",
"pysam",
"bx-python",
"pyyaml",
"appdirs",
"tqdm",
"six",
"toolz"
],
install_requires = open("requirements.txt").read().split(),

scripts = [
"bin/swiss",
Expand Down

0 comments on commit 36b18e1

Please sign in to comment.