Skip to content

Commit

Permalink
Update extras_require
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Jun 24, 2020
1 parent 9b9d25e commit d14db63
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions setup.py
Expand Up @@ -18,6 +18,7 @@
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
"""


Expand Down Expand Up @@ -51,19 +52,16 @@ def get_requirements(path):


install_requires = get_requirements('requirements.txt')


tests_require = [
'pytest',
'mock'
]

extras_require = {
'docs': [
'Sphinx>=1.1',
'numpydoc>=0.5'
'tests': ['pytest', 'mock', 'pytest-flake8', 'pytest-cov', 'codecov'],
'docs': get_requirements(os.path.join('docs', 'requirements.txt')),
'all': [
'biopython<1.77',
'dask[array,dataframe]',
'ipytree',
'psutil',
'pysam',
],
'pysam': ['pysam']
}


Expand All @@ -82,7 +80,6 @@ def get_requirements(path):
zip_safe=False,
classifiers=[s.strip() for s in classifiers.split('\n') if s],
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
entry_points={
'console_scripts': [
Expand Down

0 comments on commit d14db63

Please sign in to comment.