-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1002 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
34
#!/usr/bin/env python
from os import path
from setuptools import setup
with open(path.join(path.dirname(__file__), "README.rst")) as f:
readme = f.read()
setup(
name="cqstat",
version="1.0.0",
description="A colorful command line tool substitutes for Grid Engine qstat command",
long_description=readme,
url="https://github.com/ronin-gw/cqstat",
download_url="https://github.com/ronin-gw/cqstat",
author="Hayato Anzawa",
author_email="[email protected]",
license="MIT",
platforms=["POSIX", "Mac OS X"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities"
],
keywords="GridEngine",
packages=["cqstat"],
entry_points={
"console_scripts": ["cqstat = cqstat.__main__:main"]
}
)