-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
67 lines (57 loc) · 1.86 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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, heatsequer development team.
#
# Distributed under the terms of the Modified GPLv3 License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
import re
import ast
import os
from setuptools import find_packages, setup
classes = """
Development Status :: 3 - Alpha
License :: OSI Approved :: GPLv3 license
Topic :: Software Development :: Libraries
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 :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('Easy heatmap visualization of microbes')
with open('README.md') as f:
long_description = f.read()
version = '0.0.1'
setup(name='heatsequer',
version=version,
license='Modified BSD',
description=description,
long_description=long_description,
author="heatsequer development team",
author_email="[email protected]",
maintainer="heatsequer development team",
maintainer_email="[email protected]",
packages=find_packages(),
setup_requires=['numpy >= 1.9.2'],
# note, hdf5 is required to be installed beforehand
# also qt5,pyqt==5 needs to be installed beforehand
install_requires=[
'biom-format',
'easygui',
'scipy',
'numpy',
'networkx',
'scikit-learn',
'matplotlib',
'h5py',
'requests',
],
classifiers=classifiers,
package_data={
}
)