aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj-sh6042025-06-06 17:53:24 -0400
committerkj-sh6042025-06-06 17:53:24 -0400
commit57b244a0cc016f59547b381ccbea483e9b0fa6a1 (patch)
tree57ebc2c2fe47e75fd790c70d175d5b1cda8a43fb
parent85a512175c47bbaf947fc4d9f894b666593a622b (diff)
refactor: anchor off of the `requirements.txt`
-rw-r--r--setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index de87c6b..aad2dca 100644
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,13 @@
from setuptools import setup
+with open('requirements.txt') as f:
+ install_requires = f.read().splitlines()
+
setup(
name='mic-icon',
version='1.0',
packages=['mic_icon'],
- install_requires=[
- 'pulsectl',
- 'pygobject'
- ],
+ install_requires=install_requires,
entry_points={
'console_scripts': [
'mic-icon=mic_icon.__main__:main',