-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (48 loc) · 1.75 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
#!/usr/bin/env python
from setuptools import find_packages, setup
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows']
description = 'SpongeEMP: a Web + REST API server for the sea-sponge earth microbiome project results'
with open('README.md') as f:
long_description = f.read()
keywords = 'microbiome database analysis bioinformatics',
setup(name='sponge_emp',
version='1.0.0',
license='BSD',
description=description,
long_description=long_description,
keywords=keywords,
classifiers=classifiers,
author="Amnon Amir",
maintainer="Amnon Amir",
url='na',
test_suite='nose.collector',
packages=find_packages(),
package_data={'sponge_emp': ['sponge_emp/data/*', 'sponge_emp/templates/*', 'sponge_emp/static/*']},
install_requires=[
'click >= 6',
'numpy >= 1.11.0',
'h5py >= 2.6',
'flask >= 0.12',
'pandas >= 0.19',
'biom-format >= 2.1',
'matplotlib >= 1.5',
'flask-autodoc',
],
extras_require={'test': ["nose", "pep8", "flake8"],
'coverage': ["coverage"],
'doc': ["Sphinx >= 1.4"]}
)