mirror of
https://github.com/nova-r/fediplug.git
synced 2025-01-22 16:46:55 +01:00
22 lines
383 B
Python
22 lines
383 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='fediplay',
|
|
version='2.0',
|
|
py_modules=['fediplay'],
|
|
install_requires=[
|
|
'appdirs',
|
|
'click',
|
|
'cssselect',
|
|
'lxml',
|
|
'Mastodon.py',
|
|
'python-dotenv',
|
|
'youtube-dl'
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'fediplay = fediplay:cli'
|
|
]
|
|
}
|
|
)
|
|
|