-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
63 lines (53 loc) · 2.31 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
56
57
58
59
60
61
62
63
#!/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
__version__ = "2024.09"
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.rst') as f:
long_description = f.read()
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='qp-woltka',
version=__version__,
long_description=long_description,
license="BSD",
description='Qiita Plugin: Woltka',
author="Qiita development team",
author_email="[email protected]",
url='https://github.com/biocore/qiita',
test_suite='nose.collector',
packages=['qp_woltka'],
package_data={
'qp_woltka': [
'support_files/*',
'databases/*']},
scripts=['scripts/configure_woltka', 'scripts/start_woltka',
'scripts/finish_woltka', 'scripts/woltka_merge'],
extras_require={'test': ["nose >= 0.10.1", "pep8"]},
install_requires=['click >= 3.3', 'future', 'pandas >= 0.15',
'h5py >= 2.3.1', 'biom-format', 'lxml',
# forcing 0.1.7 because Qiita uses this version
'polars-lts-cpu', 'woltka @ https://github.com/'
'qiyunzhu/woltka/archive/refs/tags/v0.1.7.zip',
'pysyndna @ https://github.com/AmandaBirmingham/'
'pysyndna/archive/refs/heads/main.zip', 'html5lib',
'mxdx @ https://github.com/wasade/mxdx/archive/'
'refs/heads/main.zip'],
classifiers=classifiers
)