1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
### Optional Dependencies for Additional Plotly Functionality ###
### ###
### To install, run: ###
### $ pip install -r optional-requirements.txt ###
### ###
###################################################################
## numpy (technically, this is covered by matplotlib's deps) ##
numpy
## matplotlylib dependencies - moving away from 1.3.1 ##
# matplotlib==2.2.2
## testing dependencies ##
coverage==4.3.1
mock==2.0.0
pytest==3.5.1
backports.tempfile==1.0
xarray
pytz
## orca dependencies ##
requests
psutil
## code formatting
pre-commit
black==19.10b0
## codegen dependencies ##
inflect
## template generation ##
colorcet
## ipython ##
ipython
## pandas deps for some matplotlib functionality ##
pandas
## scipy deps for some FigureFactory functions ##
scipy
## jupyter ##
jupyter
jupyterlab ~=3.0 # To package js extension as federated module
ipykernel
## deps for _county_choropleth.py figure factory
pyshp
geopandas
shapely
## image uri conversion
pillow
|