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
|
# ----------------------------------------------------------------------------
# Copyright (c) 2017-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import find_packages, setup
import versioneer
setup(
name='q2-sample-classifier',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license='BSD-3-Clause',
packages=find_packages(),
author="Nicholas Bokulich",
author_email="nbokulich@gmail.com",
description="Machine learning classification and regression tools.",
url="https://qiime2.org/",
entry_points={
'qiime2.plugins':
['q2-sample-classifier=q2_sample_classifier.plugin_setup:plugin']
},
package_data={
'q2_sample_classifier.tests': ['data/*'],
'q2_sample_classifier': ['assets/index.html', 'citations.bib']
},
zip_safe=False,
)
|