-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
74 lines (69 loc) · 2.59 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
68
69
70
71
72
73
74
# ----------------------------------------------------------------------------
# Copyright (c) 2017-, LabControl 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
from glob import glob
import versioneer
classes = """
Development Status :: 3 - 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.5
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
# show description
with open('README.md') as f:
long_description = f.read()
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='labcontrol',
long_description=long_description,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license='BSD',
description='A lab manager for plate maps and sequence flows',
author='Jeff DeReus',
author_email='jdereus@ucsd.edu',
url='https://github.com/biocore/LabControl',
test_suite='nose.collector',
packages=find_packages(),
include_package_data=True,
package_data={
'labcontrol.db': [
'support_files/*',
'support_files/patches/*'],
'labcontrol.gui': [
'handlers/*',
'handlers/composition_handlers/*',
'handlers/composition_handlers/test/*',
'handlers/process_handlers/*',
'handlers/process_handlers/test/*',
'js_tests/*',
'js_tests/qunit/*',
'static/*',
'static/css/*',
'static/img/*',
'static/js/*',
'static/vendor/*',
'static/vendor/css/*',
'static/vendor/css/images/*',
'static/vendor/fonts/*',
'static/vendor/js/*',
'static/vendor/js/slickgrid.plugins/*',
'static/vendor/licenses/*',
'templates/*',
'test/*', ]},
scripts=glob('scripts/*'),
extras_require={'test': ['nose >= 0.10.1', 'pep8', 'mock',
'qiita_client']},
install_requires=['click', 'tornado < 6', 'psycopg2', 'bcrypt', 'numpy',
'pandas', 'natsort', 'versioneer'],
classifiers=classifiers
)