-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.26 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
from setuptools import setup
setup(
name='vcc',
packages=['vcc', 'vcc.ns', 'vcc.images'],
description='Client software for VLBI Operations Center (VCC)',
version='1.4.0',
url='http://github.com/',
author='Mario',
author_email='[email protected]',
keywords=['vlbi', 'vcc'],
install_requires=['requests', 'sshtunnel', 'pika', 'toml', 'psutil', 'pexpect', 'setuptools',
'pycryptodome', 'pyjwt', 'urllib3', 'tabulate', 'tkcalendar'],
include_package_data=True,
package_data={'': ['images/info.png', 'images/warning.png', 'images/urgent.png']},
entry_points={
'console_scripts': [
'vcc=vcc.__main__:main',
'vccns=vcc.ns.__main__:main',
'message-box=vcc.windows:main',
'fslog=vcc.fslog:main',
'sessions-wnd=vcc.tools:main',
'dashboard=vcc.__main__:main',
'sumops=vcc.__main__:main',
'downtime=vcc.__main__:main',
'master=vcc.__main__:main',
'urgent=vcc.__main__:main',
'inbox=vcc.__main__:main',
'vcc-config=vcc.config:main',
'test-in=vcc.inbox2:main',
'test-msg=vcc.messages:main',
'vccmon=vcc.ns.service:main'
]
},
)