forked from biocore/empress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (63 loc) · 2.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2016-2020, empress development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE.md, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import setup, find_packages
__version__ = "0.3.0-dev"
__maintainer__ = "Empress development team"
__email__ = "[email protected]"
# based on the text found in github.com/qiime/pynast
classes = """
Development Status :: 5 - Alpha
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: User Interfaces
Programming Language :: Python
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
with open('README.md') as f:
long_description = f.read()
base = ["numpy", "scipy", "pandas", "click",
"jinja2", "scikit-bio", "biom-format", "iow",
"emperor @ https://www.github.com/biocore/emperor/archive/master.zip"]
test = ["flake8", "nose"]
all_deps = base + test
setup(
name='empress',
version=__version__,
description='Empress',
author="Empress Development Team",
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url='http://github.com/biocore/empress',
entry_points={
'qiime2.plugins':
['q2-empress=empress.plugin_setup:plugin']
},
packages=find_packages(),
package_data={
'empress': ['support_files/vendor/*.js',
'support_files/vendor/*.css',
'support_files/css/*.css',
'support_files/js/*.js',
'support_files/templates/*.html',
'citations.bib']},
data_files={},
install_requires=base,
extras_require={'test': test, 'all': all_deps},
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD-3-Clause',
classifiers=classifiers)