django-sql-explorer
django-sql-explorer copied to clipboard
Add pie and line chart tabs to query result preview
@marksweb, thank you for amendments, they have all been incorporated now. Anything else you would like to change?
@eeriksp Just realised, this needs the setup.py updating to handle the optional dependencies added here.
There's a good example here; https://github.com/anymail/django-anymail/blob/main/setup.py#L62
At the moment we've got;
extras_require={
"xls": [
'xlsxwriter>=1.2.1'
]
},
So this could go in with the feature name;
extras_require={
"graphs": [
'matplotlib<4',
'seaborn<0.12'
]
"xls": [
'xlsxwriter>=1.2.1'
]
},