-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.06 KB
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
from setuptools import setup, find_packages
setup(
name="WrapSlurm",
version="0.1.9",
description="A utility for managing SLURM jobs and nodes with enhanced display features.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Voidful",
author_email="voidful@eric-lam.com",
url="https://github.com/voidful/WrapSlurm",
license="MIT",
packages=find_packages(),
install_requires=[
"terminaltables",
"termcolor",
"questionary",
],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"wi = wrapslurm.node_info:main",
"wq = wrapslurm.queue_info:main",
"wr = wrapslurm.job_runner:main",
"wl = wrapslurm.track_job:main",
"wk = wrapslurm.cancel_job:main",
"ws = wrapslurm.main_help:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)