Closed begimai closed 4 years ago
I want to use it for my Django project, why it creates extra dependencies? Why do I need flask?
[package.extras] all = ["Flask (>=1.0.2)", "graphene (>=2.1.2)", "Flask-Graphql (>=2.0.0)", "graphene-django (>=2.0.0)"] django = ["graphene-django (>=2.0.0)"] flask = ["Flask (>=1.0.2)", "graphene (>=2.1.2)", "Flask-Graphql (>=2.0.0)"]
Simply install with pip install graphene_file_upload[django] or without extras. This is a convenience. By default, neither flask nor Django is installed
pip install graphene_file_upload[django]
Great, thank you!
I want to use it for my Django project, why it creates extra dependencies? Why do I need flask?