-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (45 loc) · 1.65 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import setup
__version__ = "2022.03"
classes = """
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
with open('README.md') as f:
long_description = f.read()
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='sequence-processing-pipeline',
version=__version__,
long_description=long_description,
license="BSD",
description='Sequence processing pipeline',
author="Qiita development team",
author_email="[email protected]",
url='https://github.com/biocore/mg-scripts',
setup_requires=['numpy', 'cython'],
include_package_data=True,
packages=['sequence_processing_pipeline'],
package_data={
'sequence_processing_pipeline': [
'templates/*',
'scripts/*'
]
},
install_requires=[
'click', 'requests', 'pandas', 'flake8', 'nose', 'coverage',
'pgzip', 'jinja2',
'metapool @ https://github.com/biocore/'
'metagenomics_pooling_notebook/archive/master.zip'
],
entry_points={
'console_scripts': ['demux=sequence_processing_pipeline.scripts.cli'
':demux'],
})