-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 892 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
28
29
30
from setuptools import setup
setup(
name='rpi-fanctl',
version='0.1.0',
packages=['rpi_fanctl'],
url='https://github.com/HDScorpio/rpi_fanctl',
license='MIT',
author='Andrey Ulagashev',
author_email='[email protected]',
description='Raspberry Pi fan control through GPIO',
setup_requires=['setuptools'],
install_requires=['RPi.GPIO'],
entry_points={
'console_scripts': [
'rpi-fanctl = rpi_fanctl.main:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Hardware',
'Topic :: System :: Monitoring'
],
keywords='raspberry fan'
)