forked from qiime2/q2-alignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 928 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
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, QIIME 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 setup, find_packages
setup(
name="q2-alignment",
# TODO stop duplicating version string
version="0.0.0-dev",
packages=find_packages(),
install_requires=['scikit-bio', 'qiime >= 2.0.0', 'q2-types'],
#package_data={'q2_alignment': ['markdown/*md']},
author="Greg Caporaso",
author_email="[email protected]",
description="Create and work with alignments in QIIME 2.",
license="BSD",
url="http://www.qiime.org",
entry_points={
'qiime.plugins': ['q2-alignment=q2_alignment.plugin_setup:plugin']
}
)