forked from innogames/serveradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·70 lines (66 loc) · 2.14 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
#!/usr/bin/env python3
"""Serveradmin and adminapi setup
Copyright (c) 2021 InnoGames GmbH
"""
from setuptools import setup, find_packages
from adminapi import VERSION as SERVERADMIN_VERSION
if __name__ == '__main__':
setup(
version='.'.join(map(str, SERVERADMIN_VERSION)),
name='adminapi',
description='Serveradmin module',
url='https://github.com/innogames/serveradmin',
packages=find_packages(exclude=["serveradmin_*"]),
package_data={
'serveradmin.api': ['templates/api/*'],
'serveradmin.apps': ['templates/apps/*'],
'serveradmin.common': [
'static/*',
'static/css/*',
'static/icons/*',
'static/js/*',
'static/js/plugins/*',
'templates/*',
'templates/igrestlogin/*',
],
'serveradmin.graphite': [
'static/*',
'static/css/*',
'static/js/*',
'templates/graphite/*',
],
'serveradmin.resources': [
'static/*',
'static/css/*',
'static/js/*',
'templates/resources/*',
],
'serveradmin.serverdb': [
'static/*',
'static/css/*',
'templates/serverdb/*',
],
'serveradmin.servershell': [
'static/*',
'static/css/*',
'static/js/*',
'static/webfonts/*',
'static/js/servershell/*',
'static/js/servershell/autocomplete/*',
'templates/servershell/*',
'templates/servershell/modals/*',
],
},
entry_points={
'console_scripts': [
'serveradmin=serveradmin.__main__:main',
'adminapi=adminapi.__main__:main',
],
},
install_requires=[
'paramiko>=2.7,<4',
'netaddr~=0.8.0',
],
author='InnoGames System Administration',
author_email='[email protected]',
)