-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
22 lines (21 loc) · 908 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='fastqp',
provides='fastqp',
version="0.3.4",
author='Matthew Shirley',
author_email='[email protected]',
url='http://mattshirley.com',
description='Simple NGS read quality assessment using Python',
license='MIT',
packages=['fastqp', 'fastqp.backports'],
install_requires=['six', 'matplotlib', 'numpy', 'simplesam', 'scipy', 'cycler'],
entry_points={'console_scripts': ['fastqp = fastqp.cli:main']},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License", "Environment :: Console",
"Intended Audience :: Science/Research", "Natural Language :: English",
"Operating System :: Unix", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics"
])