-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 695 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="cbpi4-InputControl",
version="0.0.13",
description="CraftBeerPi 4 plugin for input control (physical buttons, etc.) → actor on/off/toggle",
author="daGrumpf",
author_email="",
url="https://github.com/daGrumpf-bxp/cbpi4-InputControl",
license="GPL-3.0",
include_package_data=True,
package_data={
"": ["*.txt", "*.rst", "*.yaml", "*.json", "*.md"],
"cbpi4-InputControl": ["*", "*.txt", "*.rst", "*.yaml", "*.json", "*.md"],
},
packages=["cbpi4-InputControl"],
install_requires=[
"gpiozero>=2.0",
"lgpio>=0.2.0",
"smbus2>=0.4.0", # pour la source PCF8574
],
)