Skip to content

Commit

Permalink
[CI] Add pytest and matplotlib in requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
tanghaibao committed Sep 17, 2017
1 parent 37f5459 commit caa67a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
pytest
cython
matplotlib
pandas
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
with open('requirements.txt') as f:
required = f.read().splitlines()


def import_init(filename="__init__.py"):
Expand Down Expand Up @@ -55,5 +57,5 @@ def import_init(filename="__init__.py"):
url='https://github.com/tanghaibao/tredparse',
description='Short Tandem Repeat (STR) genotyper',
long_description=open("README.md").read(),
install_requires=['cython', 'pandas', 'pysam']
install_requires=required + ['pysam']
)

0 comments on commit caa67a0

Please sign in to comment.