-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (45 loc) · 1.27 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
from setuptools import setup, find_packages
from gpus import __version__
setup(
name="gpus",
version=__version__,
description="A web interface for monitoring NVIDIA GPUs",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="mrfakename",
author_email="[email protected]",
url="https://github.com/fakerybakery/gpus",
license="MIT",
packages=find_packages(),
install_requires=[
"nvidia-ml-py",
"click",
"flask",
"flask-socketio",
"eventlet>=0.30.0", # For WebSocket support
"python-engineio>=4.0.0",
"python-socketio>=5.0.0",
"psutil", # For process management
"rich>=10.0.0", # For interactive CLI
"requests>=2.25.0", # For API communication
],
entry_points={
"console_scripts": [
"gpus=gpus.cli:cli",
],
},
include_package_data=True,
package_data={
"gpus": [
"templates/*.html",
"static/css/*.css",
"static/js/*.js",
],
},
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)