-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
58 lines (48 loc) · 1.9 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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2015--, The Horizomer 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
__version__ = "0.0.1-dev"
classes = """
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
long_description = ("Horizomer: workflow for whole genome HGT detection.")
classifiers = [s.strip() for s in classes.split('\n') if s]
keywords = 'horizontal gene transfer, whole genome'
setup(name='horizomer',
version=__version__,
long_description=long_description,
license="BSD",
description='Horizomer',
classifiers=classifiers,
keywords=keywords,
author="Horizomer development team",
author_email="[email protected]",
maintainer="Horizomer development team",
maintainer_email="[email protected]",
url='https://github.com/biocore/horizomer',
test_suite='nose.collector',
packages=find_packages(),
install_requires=[
'click >= 6.0',
'scikit-bio >= 0.5.1',
],
extras_require={'test': ["nose", "pep8", "flake8"],
'doc': ["Sphinx == 1.3.3"]},
)