forked from biocore/labadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.15 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
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# Copyright (c) 2013, The Qiita Development Team.
#
# Distributed under the terms of the BSD 3-clause License.
#
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------
from setuptools import setup
__version__ = "0.1.0-dev"
long_description = """Knight lab admin"""
setup(name='Knight lab UI',
version=__version__,
long_description=long_description,
license="BSD",
description='',
author="",
author_email="[email protected]",
url='',
test_suite='nose.collector',
package_data={'knimin': [],
'knimin.lib': [],
'knimin.handlers': []},
extras_require={'test': ["nose >= 0.10.1", "pep8", "flake8", "mock",
"requests-mock"]},
install_requires=['psycopg2', 'tornado==3.1.1', 'WTForms==2.0.1',
'future', 'bcrypt', 'pillow', 'python-dateutil',
'requests', 'mock', 'pandas', 'six']
)