-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#! /usr/bin/env python
from setuptools import setup, Extension
setup(name='seq-qc',
version='2.0.4',
packages=['seq_qc',],
description='utilities for performing various preprocessing steps on '
'sequencing reads',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='bioinformatics sequence preprocessing quality control',
url='https://github.com/Brazelton-Lab/seq_qc/',
download_url = 'https://github.com/Brazelton-Lab/seq_qc/archive/v2.0.3.tar.gz',
author='Christopher Thornton',
author_email='[email protected]',
license='GPLv2',
include_package_data=True,
zip_safe=False,
install_requires=['bio_utils', 'arandomness',],
entry_points={
'console_scripts': [
'qtrim = seq_qc.qtrim:main',
'filter_replicates = seq_qc.replicates:main',
'demultiplex_by_header = seq_qc.demultiplex:main'
]
}
)