Remove unused python packages from playout

- anyjson is failing with setuptools >=58, because it
dropped the use_2to3 support.
- other package are simply not used.
This commit is contained in:
jo 2021-09-07 11:08:58 +02:00
parent 2513f08d07
commit e69c2796fa
1 changed files with 2 additions and 8 deletions

View File

@ -29,19 +29,13 @@ setup(
],
install_requires=[
"amqplib",
"anyjson",
"argparse",
"configobj",
"docopt",
"future",
"defusedxml",
"kombu",
"mutagen",
"PyDispatcher",
"pyinotify",
"packaging",
"pytz",
"requests",
"defusedxml",
"packaging",
],
zip_safe=False,
)