2018-01-21 18:56:10 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2023-02-22 14:14:25 +01:00
|
|
|
name='fediplug',
|
2018-04-03 03:15:42 +02:00
|
|
|
version='2.0',
|
2023-02-22 14:14:25 +01:00
|
|
|
py_modules=['fediplug'],
|
2018-01-21 18:56:10 +01:00
|
|
|
install_requires=[
|
2018-07-20 17:57:00 +02:00
|
|
|
'appdirs',
|
2018-04-03 03:15:42 +02:00
|
|
|
'click',
|
2018-01-21 18:56:10 +01:00
|
|
|
'cssselect',
|
|
|
|
'lxml',
|
2018-04-03 03:15:42 +02:00
|
|
|
'Mastodon.py',
|
|
|
|
'python-dotenv',
|
2023-02-25 19:26:12 +01:00
|
|
|
'asyncio',
|
|
|
|
'asyncclick',
|
|
|
|
'anyio',
|
|
|
|
'keyring',
|
|
|
|
'buttplug-py'
|
|
|
|
|
2018-01-21 18:56:10 +01:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2023-02-22 14:14:25 +01:00
|
|
|
'fediplug = fediplug:cli'
|
2018-01-21 18:56:10 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|