fediplug/setup.py
Nova 1e1f2a40ac Add buttplugio device integration; Remove queue; Update dependencies
This is the first rudementary buttplugio integration that actually
works. Use with caution. I still want to add the queue back and
currently the duration and length of vibration is hard-coded.
2023-02-25 19:26:12 +01:00

27 lines
470 B
Python

from setuptools import setup
setup(
name='fediplug',
version='2.0',
py_modules=['fediplug'],
install_requires=[
'appdirs',
'click',
'cssselect',
'lxml',
'Mastodon.py',
'python-dotenv',
'asyncio',
'asyncclick',
'anyio',
'keyring',
'buttplug-py'
],
entry_points={
'console_scripts': [
'fediplug = fediplug:cli'
]
}
)