forked from arti/doors
Add Web skeleton
This commit is contained in:
15
kdoorpi/README.md
Normal file
15
kdoorpi/README.md
Normal 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
|
||||
|
0
kdoorpi/kdoorpi/__init__.py
Normal file
0
kdoorpi/kdoorpi/__init__.py
Normal file
3
kdoorpi/pyproject.toml
Normal file
3
kdoorpi/pyproject.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[build-system]
|
||||
requires = ["setuptools >= 40.6.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
23
kdoorpi/setup.py
Normal file
23
kdoorpi/setup.py
Normal 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',
|
||||
]
|
||||
|
||||
)
|
Reference in New Issue
Block a user