-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (29 loc) · 913 Bytes
/
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
from setuptools import setup
from qtop_py import __version__
import sys
if sys.version_info < (2, 5):
sys.exit('Sorry, Python < 2.5 is not supported')
f = open("README.rst", 'r')
try:
long_description = f.read()
finally:
f.close()
setup(
name='qtop',
version=__version__,
description="""qtop: the fast text mode way to monitor your cluster's utilization and status;
the time has come to take back control of your cluster's scheduling business""",
license="MIT",
long_description=long_description,
author='Sotiris Fragkiskos',
author_email='[email protected]',
url="https://github.com/qtop/qtop",
packages=['qtop_py',
'qtop_py.legacy',
'qtop_py.plugins',
'qtop_py.ui'
],
package_dir={'qtop_py': 'qtop_py'},
package_data={'qtop_py': ['../qtopconf.yaml', '../qtop.py']},
scripts=['qtop']
)