Skip to content

Commit

Permalink
No need to use pytest-runner in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ozagordi committed Feb 6, 2018
1 parent 2f03eca commit 16414f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive', 'pytest-runner'],
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
install_requires=['setuptools_scm'],
tests_require=['pytest', 'flake8'],
name='MinVar',
Expand All @@ -14,7 +14,6 @@
author_email='[email protected]',
packages=find_packages('src'), # include all packages under src
package_dir={'': 'src'}, # tell setuptools packages are under src
# scripts=['bin/minvar', 'src/scripts/blast2sam.py'],
package_data={'minvar': ['db/HIV/*', 'db/HCV/*', 'db/template.tex']},
entry_points={
'console_scripts': ['minvar = minvar.cli:main',
Expand All @@ -25,7 +24,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand All @@ -43,5 +42,6 @@
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.5']
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6']
)

0 comments on commit 16414f1

Please sign in to comment.