-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
49 lines (46 loc) · 1.86 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
# ----------------------------------------------------------------------------
# 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
import versioneer
setup(
name="microsetta-admin",
author="Daniel McDonald",
author_email="[email protected]",
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/biocore/microsetta-admin",
description="A RESTful API to support The Microsetta Initiative",
license='BSD-3-Clause',
package_data={'microsetta_admin': [
'server_config.json',
'templates/*.*',
'tests/*.*',
'tests/data/*.*',
'tests/js/*.*',
'tests/js/test/*.*',
'static/*',
'static/css/*',
'static/img/*',
'static/vendor/*',
'static/vendor/bootstrap-4.4.1-dist/css/*',
'static/vendor/bootstrap-4.4.1-dist/js/*',
'static/vendor/DataTables/*',
'static/vendor/DataTables/Buttons-1.6.2/*',
'static/vendor/DataTables/Buttons-1.6.2/css/*',
'static/vendor/DataTables/Buttons-1.6.2/js/*',
'static/vendor/DataTables/Buttons-1.6.2/swf/*',
'static/vendor/DataTables/DataTables-1.10.21/*',
'static/vendor/DataTables/DataTables-1.10.21/css/*',
'static/vendor/DataTables/DataTables-1.10.21/images/*',
'static/vendor/DataTables/DataTables-1.10.21/js/*',
'static/vendor/DataTables/FixedColumns-3.3.1/*',
'static/vendor/DataTables/FixedColumns-3.3.1/css/*',
'static/vendor/DataTables/FixedColumns-3.3.1/jss/*',
'authrocket.pubkey']},
)