Codebase list fastaq / debian/3.11.0-1 setup.py
debian/3.11.0-1

Tree @debian/3.11.0-1 (Download .tar.gz)

setup.py @debian/3.11.0-1raw · history · blame

import glob
from setuptools import setup, find_packages


setup(
    name='pyfastaq',
    version='3.11.0',
    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',
    tests_require=['nose >= 1.3'],
    license='GPLv3',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Topic :: Scientific/Engineering :: Bio-Informatics',
        'Programming Language :: Python :: 3 :: Only',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
    ],
)