-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1021 Bytes
/
setup.py
File metadata and controls
36 lines (35 loc) · 1021 Bytes
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
from setuptools import setup, find_packages
setup(
name='vscheduler',
version='2.1.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'paramiko',
'PyMySQL',
'numpy',
'tabulate',
'rich',
'jinja2',
'plotly',
'kaleido',
'calmap',
'calplot',
'guacamole-api-wrapper'
],
entry_points={
'console_scripts': [
'vkill = vscheduler.tools.kill:main',
'vsync = vscheduler.tools.guaca:main',
'vquota = vscheduler.tools.quota:main',
'vmanage = vscheduler.tools.booked:main',
'valloc = vscheduler.tools.allocate:main',
'vreport = vscheduler.tools.report:main',
'vset = vscheduler.tools.set:main',
'vinfo = vscheduler.tools.info:main',
'vexcept = vscheduler.tools.except:main',
'vcontrol = vscheduler.tools.control:main',
],
},
)