forked from qiime2/qiime2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 825 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
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import find_packages, setup
setup(
name='qiime',
version='2.0.1.dev0',
packages=find_packages(),
install_requires=['python-frontmatter', 'pyyaml', 'ipymd >= 0.1.2',
'jupyter', 'decorator', 'pandas'],
entry_points={
'qiime.plugin': ['dummy-plugin=qiime.core.testing.plugin:dummy_plugin']
},
package_data={
'qiime.core.testing': ['markdown/*md'],
'qiime.sdk.tests': ['data/*']
}
)