-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (71 loc) · 2.92 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from setuptools import setup, find_packages
import os.path
from uge2slurm import NAME, VERSION, DESCRIPTION
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, "README.md")) as f:
long_description = f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ronin-gw/uge2slurm",
author="Hayato Anzawa",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
keywords="SGE, UGE, Slurm",
packages=find_packages(),
python_requires=">=2.7, !=3.0, !=3.1, <4",
entry_points={
"console_scripts": [
"uge2slurm = uge2slurm.commands.uge2slurm:main",
"qmake = uge2slurm.commands.qmake:main",
"qdel = uge2slurm.commands.qdel:main",
"qsh = uge2slurm.commands.qsh:main",
"qralter = uge2slurm.commands.qralter:main",
"qsub = uge2slurm.commands.qsub:main",
"wrapper = uge2slurm.commands.wrapper:main",
"qstat = uge2slurm.commands.qstat:main",
"qconf = uge2slurm.commands.qconf:main",
"qmod = uge2slurm.commands.qmod:main",
"qhold = uge2slurm.commands.qhold:main",
"qresub = uge2slurm.commands.qresub:main",
"qrdel = uge2slurm.commands.qrdel:main",
"qacct = uge2slurm.commands.qacct:main",
"qrsub = uge2slurm.commands.qrsub:main",
"qrstat = uge2slurm.commands.qrstat:main",
"qhost = uge2slurm.commands.qhost:main",
"qquota = uge2slurm.commands.qquota:main",
"qrls = uge2slurm.commands.qrls:main",
"qping = uge2slurm.commands.qping:main",
"qlogin = uge2slurm.commands.qlogin:main",
"qmon = uge2slurm.commands.qmon:main",
"qalter = uge2slurm.commands.qalter:main",
"qrsh = uge2slurm.commands.qrsh:main",
"qselect = uge2slurm.commands.qselect:main"
]
},
package_dir={"uge2slurm.commands": "uge2slurm/commands"},
package_data={
"uge2slurm.commands": ["wrapper/*.sh"]
}
)