dotfiles/hm/desktop/frobar/setup.py

19 lines
309 B
Python
Raw Normal View History

from setuptools import setup
setup(
name="frobar",
2025-01-10 19:04:14 +01:00
version="3.0",
install_requires=[
"i3ipc",
"psutil",
2025-01-10 19:04:14 +01:00
"pulsectl-asyncio",
"pygobject3",
"rich",
],
entry_points={
"console_scripts": [
2025-01-10 19:04:14 +01:00
"frobar = frobar:main",
]
},
)