forked from bayasdev/envycontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 855 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
27
#!/usr/bin/env python
from setuptools import setup
import envycontrol_VFIO
setup(
name='envycontrol_With_VFIO ',
version=envycontrol.VERSION,
description='Easy GPU switching for Nvidia Optimus laptops under Linux',
url='https://github.com/Maziar123/envycontrol_With_VFIO',
author='Victor Bayas with branch of Maziar ',
author_email='[email protected] & maziar [email protected]',
license='MIT',
py_modules=['envycontrol_With_VFIO'],
entry_points={
'console_scripts': [
'envycontrol=envycontrol:main',
],
},
keywords=['nvidia', 'optimus', 'prime', 'gpu', 'linux'],
classifiers=[
'Development Status :: TST ONLY',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux'
],
)