-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1002 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
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2022--, convex-hull 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
entry_point = 'q2-haarlikedist=q2_haarlikedist.plugin_setup:plugin'
setup(
name="q2-haarlikedist",
packages=find_packages(),
version='0.0.1',
author="Daniela Perry",
author_email="[email protected]",
description="compute haar-like distance",
license='BSD-3',
entry_points={
'qiime2.plugins': [entry_point]
},
package_data={
"q2_haarlikedist": ['citations.bib'],
},
zip_safe=False,
install_requires=['scipy',
'scikit-bio',
'pandas',
'biom-format']
)