-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 929 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
23
24
25
26
27
28
29
30
31
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='pydemult',
version='0.6',
description='Streamed and parallel demultiplexing of fastq files in python',
long_description=readme(),
url='https://github.com/jenzopr/pydemult',
author='Jens Preussner',
author_email='jens.preussner@mpi-bn.mpg.de',
license='MIT',
packages=['pydemult'],
entry_points = {
'console_scripts': ['pydemult = pydemult.pydemult:demultiplex']
},
scripts = [],
install_requires=[
'pandas',
'mputil'
],
classifiers = [
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3'
],
zip_safe=False,
include_package_data=True)