forked from qiyunzhu/woltka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.54 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python3
# ----------------------------------------------------------------------------
# Copyright (c) 2020--, Qiyun Zhu.
#
# 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
import woltka.__init__ as init
classes = """
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS
"""
params = {
'name': init.__name__,
'version': init.__version__,
'license': init.__license__,
'description': init.__description__,
'long_description': open('README.md').read(),
'long_description_content_type': 'text/markdown',
'author': init.__author__,
'author_email': init.__email__,
'url': init.__url__,
'install_requires': ['biom-format'],
'classifiers': classes.strip().split('\n '),
'python_requires': '>=3.6',
'entry_points': {
'console_scripts': [f'{init.__name__}=woltka.cli:cli'],
'qiime2.plugins': [f'q2-{init.__name__}=woltka.q2.plugin_setup:plugin']
}
}
setup(**params, packages=find_packages(), include_package_data=True)