Skip to content
Snippets Groups Projects
Commit 620ef6e1 authored by Jess Ward's avatar Jess Ward
Browse files

Changes to get service working:

add dependencies and entry point in setup
Moved snap and main file to darkmute directory and created init/main files
parent 699f65dd
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,11 @@ connected to a Raspberry Pi running Snapcast.
# Setup/Usage
* `sudo pip install DarkMute`
* `darkmute.py`
As the `pi` user in its home directory:
* `python3 -m venv darkmute-venv`
* `. darkmute-venv/bin/activate`
* `sudo python3 -m pip install DarkMute`
To run this as a service, create a systemd service definition. Instructions pending.
......
from .dark_mute import dark_mute
from .dark_mute import dark_mute
if __name__ == "__main__":
dark_mute()
......@@ -2,7 +2,7 @@ import asyncio
import logging
import time
import RPi.GPIO as GPIO
from snap import get_snapcast_client
from .snap import get_snapcast_client
SENSOR_PIN = 7
......
File moved
......@@ -5,17 +5,20 @@ with open("README.md", "r") as fh:
setup(
name="DarkMute",
version="0.1",
version="0.1.7",
author="Jessica Ward",
description="Mute snapcast client playing on raspi3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.xhost.io/jess/Dark-Mute",
packages=find_packages(),
scripts=['darkmute.py'],
entry_points={
'console_scripts': ['darkmute = darkmute:dark_mute'],
},
install_requires=[
"RPi.GPIO==0.6.3",
"snapcast==2.0.8"
"snapcast==2.0.8",
"zeroconf==0.20.0"
],
classifiers=[
"License :: OSI Approved :: MIT License",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment