forked from wookayin/gpustat-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (49 loc) · 1.58 KB
/
setup.py
File metadata and controls
58 lines (49 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""setup.py for gpustat-web."""
# flake8: noqa
from setuptools import setup
import sys
install_requires = [
"six>=1.7",
"termcolor",
"ansi2html",
"asyncssh>=1.16.0",
"aiohttp>=3.6.3", # GH-19
"aiohttp_jinja2>=1.5", # v1.5+ supports jinja2 v3.0
"jinja2>=3.0.0",
"aiohttp-devtools>=0.8",
]
tests_requires = [
"pytest",
]
def read_readme():
with open("README.md", encoding="utf-8") as f:
return f.read()
setup(
name="gpustat-web-plus",
version="0.5.0.dev0",
license="MIT",
description="An enhanced web interface of gpustat+ --- consolidate status of both the system and the GPUs across multiple nodes.",
long_description=read_readme(),
long_description_content_type="text/markdown",
url="https://github.com/RobertoNeglia/gpustat-web-plus",
author="Roberto Neglia",
author_email="robertoneglia99@gmail.com",
keywords="nvidia-smi gpu cuda monitoring gpustat+",
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
],
packages=["gpustat_web"],
entry_points={"console_scripts": ["gpustat-web+=gpustat_web:main"]},
install_requires=install_requires,
extras_require={"test": tests_requires},
setup_requires=["pytest-runner"],
tests_require=tests_requires,
include_package_data=True,
zip_safe=False,
python_requires=">=3.6",
)