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