mirror of
https://github.com/nova-r/fediplug.git
synced 2025-03-15 01:58:58 +01:00
19 lines
289 B
Python
19 lines
289 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='fediplay',
|
||
|
version='0.1',
|
||
|
install_requires=[
|
||
|
'Mastodon.py',
|
||
|
'cssselect',
|
||
|
'lxml',
|
||
|
'youtube-dl'
|
||
|
],
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'stream = stream:run'
|
||
|
]
|
||
|
}
|
||
|
)
|
||
|
|