mirror of
https://github.com/nova-r/fediplug.git
synced 2025-01-22 16:46:55 +01:00
1e1f2a40ac
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.
27 lines
470 B
Python
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'
|
|
]
|
|
}
|
|
)
|
|
|