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:
parent
2513f08d07
commit
e69c2796fa
|
@ -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,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue