diff options
| author | kj-sh604 | 2025-06-06 17:53:24 -0400 |
|---|---|---|
| committer | kj-sh604 | 2025-06-06 17:53:24 -0400 |
| commit | 57b244a0cc016f59547b381ccbea483e9b0fa6a1 (patch) | |
| tree | 57ebc2c2fe47e75fd790c70d175d5b1cda8a43fb | |
| parent | 85a512175c47bbaf947fc4d9f894b666593a622b (diff) | |
refactor: anchor off of the `requirements.txt`
| -rw-r--r-- | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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', |
