-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separated requirements, now plotly not installed by default but must …
…be specified in pip
- Loading branch information
Showing
7 changed files
with
36 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1 @@ | ||
# required for running tidy3d (note xarray) | ||
xarray | ||
scipy | ||
h5py>=3.0.0 | ||
rich | ||
nlopt | ||
matplotlib | ||
shapely==1.7.1 | ||
descartes | ||
pydantic>=1.9.0 | ||
PyYAML | ||
boto3 | ||
requests | ||
plotly==5.5.0 | ||
dash | ||
jupyter_dash | ||
|
||
# required to get xarray to not complain | ||
dask | ||
-r requirements/common.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# just core (no plotly, no tests) | ||
|
||
xarray | ||
scipy | ||
h5py>=3.0.0 | ||
rich | ||
nlopt | ||
matplotlib | ||
shapely==1.7.1 | ||
descartes | ||
pydantic>=1.9.0 | ||
PyYAML | ||
boto3 | ||
requests | ||
dask |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# core, plotly and tests | ||
|
||
-r common.txt | ||
-r plotly.txt | ||
|
||
# required for development | ||
click==8.0.3 | ||
black==22.1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# core + plotly plotting, no tests | ||
-r common.txt | ||
|
||
plotly==5.5.0 | ||
dash | ||
jupyter_dash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
"""Import post run visualization app and Simulation plotting through plotly.""" | ||
from .app import SimulationDataApp | ||
from .simulation import SimulationPlotly |