forked from chestm007/amdgpu-fan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 682 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 682 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
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='amdgpu_fan',
version='PROJECTVERSION',
packages=find_packages(),
url='https://github.com/chestm007/amdgpu-fan',
license='GPL-2.0',
author='Max Chesterfield',
author_email='chestm007@hotmail.com',
maintainer='Max Chesterfield',
maintainer_email='chestm007@hotmail.com',
description='amdgpu fan controller',
long_description=readme,
install_requires=[
'pyyaml',
'numpy',
],
entry_points="""
[console_scripts]
amdgpu-fan=amdgpu_fan.controller:main
""",
)