1
0
forked from arti/doors

Add Web skeleton

This commit is contained in:
Arti Zirk
2020-09-12 19:44:33 +03:00
parent 2d6403a2bf
commit aa313497cd
25 changed files with 554 additions and 13 deletions

15
kdoorpi/README.md Normal file
View File

@@ -0,0 +1,15 @@
# K-Door-Pi
Client for K-Space door system. Run on Raspberry Pi and controlls the doors
# Requirements
This project needs at least Linux kernel 4.8 and uses crossplatform [libgpiod]
to talk to the hardware. Under Debian/Ubuntu you have to install [python3-libgpiod].
sudo apt install python3-libgpiod
[libgpiod]: https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/
[python3-libgpiod]: https://packages.debian.org/sid/python3-libgpiod

View File

3
kdoorpi/pyproject.toml Normal file
View File

@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"

23
kdoorpi/setup.py Normal file
View File

@@ -0,0 +1,23 @@
from setuptools import find_packages, setup
setup(
name='kdoorpi',
version='0.0.0',
author="Arti Zirk",
author_email="arti@zirk.me",
description="K-Space Door client that talks to the hardware",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.5',
install_requires=[],
extras_require={},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: System :: Networking',
'Intended Audience :: System Administrators',
]
)