-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 857 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 857 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
#!/usr/bin/env python
from distutils.core import setup
a=setup(name="pbsclusterviz",
version="0.7a",
description="PBS Cluster Visualisation",
author="Paul Cochrane",
author_email="paul@liekut.de",
maintainer="Paul Cochrane",
maintainer_email="paul@liekut.de",
url="https://github.com/paultcochrane/pbsclusterviz",
license="GPL",
keywords="PBS Torque Maui Cluster HPC Visualisation",
platforms="OS Independent",
packages=['pbsclusterviz'],
scripts=[
'bin/pbs_cluster_status',
'bin/pbs_gen_nodes_file',
],
data_files=[('/etc/pbsclusterviz.d',
[
'etc/pbsclusterviz.d/nodes',
'etc/pbsclusterviz.d/clusterviz.conf'
])],
)
# vim: expandtab shiftwidth=4: