forked from Howchoo/pi-fan-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 664 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 664 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
32
33
34
35
36
#!/usr/bin/env python
import setuptools
import os
def find_version():
tag = os.environ.get("TAG", "0.0.0")
return tag
setuptools.setup(
name="pyfan",
version=find_version(),
description="Raspberry PI fan controller",
author="Ben Greene",
author_email="BenJGreene@gmail.com",
url="https://www.undefined.com",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
},
zip_safe=False,
install_requires=[
"gpiozero==1.6.2",
"RPi.GPIO==0.7.1a4",
],
setup_requires=[
],
extras_require={
# "dev": [
# ]
},
entry_points={
},
)