forked from qiita-spots/qtp-sequencing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (49 loc) · 2.17 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
53
54
55
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# Copyright (c) 2013, The Qiita Development Team.
#
# Distributed under the terms of the BSD 3-clause License.
#
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------
from setuptools import setup
from glob import glob
__version__ = "2022.11"
classes = """
Development Status :: 5 - Production/Stable
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.9
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
with open('README.rst') as f:
long_description = f.read()
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='qtp-sequencing',
version=__version__,
long_description=long_description,
license="BSD",
description='Qiita Type Plugin: Target Gene',
author="Qiita development team",
author_email="qiita.help@gmail.com",
url='https://github.com/qiita-spots/qtp-sequencing',
test_suite='nose.collector',
packages=['qtp_sequencing'],
package_data={'qtp_sequencing': ['support_files/config_file.cfg',
'tests/test_data/*']},
scripts=glob('scripts/*'),
extras_require={'test': ["nose >= 0.10.1", "pep8"]},
# note that there is a bug in newer versions of h5py and the newer
# version required 3.7; the bug is:
# https://github.com/h5py/h5py/issues/992
install_requires=['click', 'matplotlib', 'h5py', 'quast',
'qiita-files @ https://github.com/'
'qiita-spots/qiita-files/archive/master.zip',
'qiita_client @ https://github.com/'
'qiita-spots/qiita_client/archive/master.zip'],
classifiers=classifiers)