Skip to content

Commit

Permalink
Numpy required by install and is on pypi; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
martinghunt committed Aug 18, 2015
1 parent 04548a6 commit 480ccde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion pyfastaq/common.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '3.6.0'
version = '3.6.1'
13 changes: 3 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
import os
import glob
import sys
from setuptools import setup, find_packages


try:
import numpy
except ImportError:
print("Error! numpy for Python3 not found.\nPlease install it (e.g. apt-get install python3-numpy)", file=sys.stderr)
sys.exit(1)

setup(
name='pyfastaq',
version='3.6.0',
version='3.6.1',
description='Script to manipulate FASTA and FASTQ files, plus API for developers',
packages = find_packages(),
author='Martin Hunt',
author_email='mh12@sanger.ac.uk',
url='https://github.com/sanger-pathogens/Fastaq',
scripts=glob.glob('scripts/*'),
test_suite='nose.collector',
install_requires=['nose >= 1.3'],
tests_require=['nose >= 1.3'],
install_requires=['numpy >= 1.7.1'],
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 480ccde

Please sign in to comment.