forked from mil-ad/stui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 770 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
import codecs
from setuptools import setup, find_packages
from stui import __version__
with codecs.open("README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="stui",
description="A Slurm client for the terminal",
long_description=README,
long_description_content_type="text/markdown",
version=__version__,
packages=find_packages(),
author="Milad Alizadeh",
url="https://github.com/mi-lad/stui",
keywords=["slurm", "cluster"],
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
install_requires=["urwid", "fabric>=2.5.0"],
python_requires=">=3.6",
entry_points={"console_scripts": ["stui=stui.cli:cli",]},
)