-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 895 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 895 Bytes
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
"""
setup.py
This script sets up the package distribution for the GPU monitoring application.
Dependencies are directly included in this file.
Python Version:
- This script and module were designed to work with Python 3.8.10.
"""
from setuptools import setup, find_packages
setup(
name='iris_gpubench',
version='0.1.0-dev1', # Development version
packages=find_packages(), # Automatically find packages in the current directory
install_requires=[
'pynvml==11.5.3',
'requests==2.32.4',
'pyyaml==6.0.2',
'tabulate==0.9.0',
'matplotlib==3.7.5',
'docker==7.1.0',
],
entry_points={
'console_scripts': [
'iris-gpubench=iris_gpubench.main:main', # Ensures the script is accessible via `iris-gpubench` command
],
},
python_requires='==3.8.10', # Ensure compatibility with Python 3.8.10
)