-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (75 loc) · 2.88 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
#! /usr/bin/env python
# -*- encoding: utf-8 -*-
# This file is part of mydashboard.
# Copyright 2019-2021 fccagou <[email protected]>
#
# mydashboard is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# mydashboard is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU General Public License
# along with pyap. If not, see <http://www.gnu.org/licenses/>.
from distutils.core import setup
setup(name='mydashboard',
version='0.0.13',
description='Userland Dashboard microservice',
url='http://github.com/fccagou/tools',
author='fccagou',
author_email='[email protected]',
license='GPLv3+',
long_description="Userland Dashboard",
scripts=[
'mydashboard'
],
install_requires=[
'python3'
],
packages=[
],
data_files=[
('share/doc/mydashboard',[
'doc/README.md',
'doc/LICENSE.md',
]),
('share/doc/mydashboard/samples',[
'data/conf.json',
'data/rdp_connection.sh',
'data/remote_connection.sh',
'data/remote.json',
]),
('/etc/mydashboard', [
'data/mydashboard.conf-default'
]),
('/etc/mydashboard/html', [
'docroot/css/bootstrap.min.css',
'docroot/css/all.css',
'docroot/index.html',
'docroot/js/bootstrap.bundle.js',
'docroot/css/mydashboard.css',
'docroot/img/favicon.ico',
'docroot/img/computer.svg',
'docroot/js/axios.js',
'docroot/js/vue.global.prod.js',
'docroot/js/vuex.global.prod.js',
'docroot/js/vue-router.global.prod.js',
'docroot/js/app.js',
'docroot/js/routes.js',
'docroot/js/store.js',
'docroot/js/views/RemoteAccess.vue.js',
'docroot/js/views/Customization.vue.js',
'docroot/js/views/NotFound.vue.js',
'docroot/js/components/NavBar.vue.js',
'docroot/js/components/Toasts.vue.js',
'docroot/js/components/Toast.vue.js',
'docroot/js/components/RemoteAccess/Site.vue.js',
'docroot/js/components/RemoteAccess/Domain.vue.js',
'docroot/js/components/RemoteAccess/Host.vue.js',
]),
],
)