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=[ install_requires=[
"amqplib", "amqplib",
"anyjson",
"argparse",
"configobj", "configobj",
"docopt", "defusedxml",
"future",
"kombu", "kombu",
"mutagen", "mutagen",
"PyDispatcher", "packaging",
"pyinotify",
"pytz", "pytz",
"requests", "requests",
"defusedxml",
"packaging",
], ],
zip_safe=False, zip_safe=False,
) )