-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (50 loc) · 1.93 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (50 loc) · 1.93 KB
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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2015--, calour development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
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 = 'dbbact bacterial database website server'
with open('README.md') as f:
long_description = f.read()
keywords = 'microbiome database analysis bioinformatics',
setup(name='dbbact_website',
version=0.1,
license='BSD',
description=description,
long_description=long_description,
keywords=keywords,
classifiers=classifiers,
author="dbbact development team",
maintainer="dbbact development team",
url='https://github.com/amnona/scdb-website',
packages=find_packages(),
# package_data={'dbbact': ['log.cfg']},
# install_requires=[
# 'calour'],
# extras_require={'test': ["nose", "pep8", "flake8"],
# 'coverage': ["coverage"],
# 'doc': ["Sphinx >= 1.4"]},
# entry_points={
# 'console_scripts': [
# 'calour=calour.cli:cmd',
# ]}
)