forked from biocore/LabControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (54 loc) · 2.22 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
# ----------------------------------------------------------------------------
# Copyright (c) 2017-, labman 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
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
"""
__version__ = '2017.5.0'
with open('README.md') as f:
long_description = f.read()
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='labman',
version=__version__,
long_description=long_description,
license='BSD',
description='A lab manager for plate maps and sequence flows',
author='Jeff DeReus',
author_email='jdereus@ucsd.edu',
url='https://github.com/jdereus/labman',
test_suite='nose.collector',
packages=find_packages(),
include_package_data=True,
package_data={'labman.db': [
'support_files/test_config.cfg', 'support_files/labman.dbs',
'support_files/labman.html', 'support_files/db_patch.sql'],
'labman.gui': ['templates/*.html',
'static/js/*',
'static/img/*',
'static/css/*',
'static/vendor/js/*',
'static/vendor/css/*',
'static/vendor/css/images/*',
'static/vendor/fonts/*',
'static/vendor/licenses/*']},
scripts=glob('scripts/*'),
extras_require={'test': ['nose >= 0.10.1', 'pep8', 'mock',
'qiita_client']},
install_requires=['click', 'tornado', 'psycopg2', 'bcrypt', 'numpy',
'pandas'],
classifiers=classifiers
)