I have a Python project which displays some information in the browser and uses bootstrap and D3 to do so. Right now, I'm simply including bootstrap.min.css
and d3.v5.min.js
in the source code repository, add them to the package_data
in setup.py
, and update them as new versions are released. This is rather ugly of course.
I'd like to specify bootstrap and D3 as a dependency in setup.py
; any hint on how this could be possible?