20 lines
512 B
Python
20 lines
512 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="pulseaudio_mute_indicator",
|
|
version="0.0.1",
|
|
url="https://github.com/jalr/mute-indicator.git",
|
|
author="jalr",
|
|
author_email="mail@jalr.de",
|
|
description="Microphone mute LED indicator",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"pulsectl",
|
|
"pyserial",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"mute-indicator-service = pulseaudio_mute_indicator.service:run",
|
|
],
|
|
},
|
|
)
|