-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (30 loc) · 1.1 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
# ----------------------------------------------------------------------------
# Copyright (c) 2022, 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
setup(
name='q2-coordinates',
version='2021.8.0.dev',
license='BSD-3-Clause',
packages=find_packages(),
author="Nicholas Bokulich",
author_email="[email protected]",
description=("Methods for geographic mapping of qiime2 artifact data or"
"metadata."),
url="https://github.com/bokulich-lab/q2-coordinates",
entry_points={
'qiime2.plugins':
['q2-coordinates=q2_coordinates.plugin_setup:plugin']
},
package_data={
'q2_coordinates': ['assets/index.html', 'assets/animated_map/*',
'assets/animated_map/*/*/*',
'citations.bib'],
'q2_coordinates.tests': ['data/*'],
},
zip_safe=False,
)