forked from leftthomas/GPUView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (36 loc) · 1.1 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
import setuptools
from gpuview import __version__
def read_readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
name='gpuview',
version=__version__,
license='MIT',
description='A lightweight web dashboard for monitoring GPU usage',
long_description=read_readme(),
long_description_content_type="text/markdown",
url='https://github.com/leftthomas/GPUView',
author='Hao Ren',
author_email='[email protected]',
keywords='gpu web-monitoring',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: System :: Monitoring',
],
packages=['gpuview'],
install_requires=['gpustat>=0.5.0', 'bottle>=0.12.14', 'gevent'],
extras_require={'test': ['pytest']},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'console_scripts': [
'gpuview=gpuview.app:main',
],
},
include_package_data=True,
zip_safe=True,
)