forked from biocore/microsetta-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (76 loc) · 3.27 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
75
76
77
78
79
80
81
82
# ----------------------------------------------------------------------------
# Copyright (c) 2019-, The Microsetta Initiative 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 babel.messages import frontend as babel
import versioneer
command_classes = versioneer.get_cmdclass()
command_classes['compile_catalog'] = babel.compile_catalog
setup(
name="microsetta-interface",
author="Daniel McDonald",
author_email="danielmcdonald@ucsd.edu",
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=command_classes,
url="https://github.com/biocore/microsetta-interface",
description="The Microsetta participant interface",
license='BSD-3-Clause',
package_data={
'': ['translations/*/*/*.mo',
'translations/*/*/*.po'],
'microsetta_interface': [
'routes.yaml',
'server_config.json',
'babel.cfg',
'templates/*.*',
'static/*',
'static/css/*',
'static/img/*',
'static/img/*/*',
'static/js/*',
'static/vendor/js/*',
'static/vendor/images/*',
'static/vendor/css/*',
'static/vendor/js/jquery.form-4.2.2/*',
'static/vendor/jquery-validation/*',
'static/vendor/jquery-ui-i18n/*',
'static/vendor/jquery-ui-1.12.1/*',
'static/vendor/jquery-ui-1.12.1/images/*',
'static/vendor/popper-1.11.0/*',
'static/vendor/bootstrap-5.0.2-dist/js/*',
'static/vendor/bootstrap-5.0.2-dist/css/*',
'static/vendor/bootstrap-datetimepicker-4.14.30/*',
'static/vendor/vue-form-generator-2.3.4/*',
'static/vendor/bootstrap-3.3.7-dist/js/*',
'static/vendor/bootstrap-3.3.7-dist/css/*',
'static/vendor/bootstrap-3.3.7-dist/fonts/*',
'static/vendor/bootstrap-3.3.7-dist/fonts/*',
'static/vendor/font-awesome-4.7.0/css/*',
'static/vendor/font-awesome-4.7.0/less/*',
'static/vendor/font-awesome-4.7.0/fonts/*',
'static/vendor/font-awesome-4.7.0/scss/*',
'static/vendor/DataTables/*',
'static/vendor/DataTables/Buttons-1.6.2/js/*',
'static/vendor/DataTables/Buttons-1.6.2/css/*',
'static/vendor/DataTables/PercentageBars-1.10.21/js/*',
'static/vendor/DataTables/PercentageBars-1.10.21/css/*',
'static/vendor/emperor/*',
'static/vendor/emperor/css/*',
'static/vendor/emperor/img/*',
'static/vendor/emperor/js/*',
'static/vendor/emperor/templates/*',
'static/vendor/emperor/vendor/*',
'static/vendor/emperor/vendor/css/*',
'static/vendor/emperor/vendor/css/font/*',
'static/vendor/emperor/vendor/css/images/*',
'static/vendor/emperor/vendor/js/*',
'static/vendor/emperor/vendor/js/three.js-plugins/*',
'static/vendor/emperor/vendor/',
'static/vendor/moment/*',
'authrocket.pubkey']},
)