Name | cap3d-viz JSON |
Version |
1.0.0
JSON |
| download |
home_page | https://github.com/andykofman/RWCap_view |
Summary | High-Performance 3D Visualization for CAP3D Files |
upload_time | 2025-08-21 09:17:56 |
maintainer | None |
docs_url | None |
author | Ahmed Ali |
requires_python | >=3.8 |
license | MIT License
Copyright (c) 2025 Ahmed Ali & Ahmed El-Sousy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
3d visualization
cap3d
capacitance
integrated circuits
eda
scientific computing
plotly
parsing
state machine
|
VCS |
 |
bugtrack_url |
|
requirements |
numpy
plotly
matplotlib
pytest
pytest-cov
black
flake8
mypy
scipy
numba
sphinx
sphinx-rtd-theme
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# CAP3D-Viz: High-Performance 3D Visualization for CAP3D Files
[](https://badge.fury.io/py/cap3d-viz)
[](https://pypi.org/project/cap3d-viz/)
[](https://opensource.org/licenses/MIT)
[](https://doi.org/10.5281/zenodo.16406690)
**CAP3D-Viz** is a high-performance Python package for parsing and visualizing 3D geometry from CAP3D files generated by capacitance solvers. It features state-machine parsing, memory-efficient streaming, and interactive 3D visualization optimized for large datasets in integrated circuit design workflows.
## Key Features
- **State-Machine Parser**: 70-80% reduction in condition checking with dispatch tables
- **Memory Efficient**: Handles 10,000+ blocks with <8MB memory usage
- **High Performance**: Parse speed of 9,882+ blocks/second
- **Interactive 3D Visualization**: Real-time filtering and exploration
- **Batched Rendering**: Smooth visualization of 50k+ blocks
- **Professional IC Features**: Industry-standard layer colors and visualization modes
- **Comprehensive Format Support**: Blocks, polygons, layers, windows, and tasks
## Performance Benchmarks
| Metric | Performance |
| ------------------------ | ------------------------------------- |
| **Parse Speed** | 9,882 blocks/second |
| **Memory Usage** | <8MB for 10k blocks |
| **Filter Latency** | <500ms for interactive operations |
| **Rendering** | 50k+ blocks with batched optimization |
## Installation
### From PyPI (Recommended)
```bash
pip install cap3d-viz
```
### Development Installation
```bash
git clone https://github.com/your-repo/cap3d-viz.git
cd cap3d-viz
pip install -e .[dev]
```
### Dependencies
- Python ≥3.8
- NumPy ≥1.19.0
- Plotly ≥5.0.0
- Matplotlib ≥3.3.0
## Quick Start
### Basic Usage
```python
from cap3d_viz import load_and_visualize
# Load and visualize a CAP3D file
fig = load_and_visualize("your_file.cap3d")
fig.show()
```
### Advanced Usage
```python
from cap3d_viz import OptimizedCap3DVisualizer
# Create visualizer with custom settings
visualizer = OptimizedCap3DVisualizer(max_blocks_display=50000)
visualizer.load_data("large_file.cap3d")
# Create interactive visualization
fig = visualizer.create_optimized_visualization(
show_mediums=True,
show_conductors=True,
show_polys=True,
use_batched_rendering=True, # For large datasets
z_slice=5.0, # Cross-section view
opacity_mediums=0.3,
opacity_conductors=0.9
)
fig.show()
```
### Performance-Optimized Parsing
```python
from cap3d_viz import StreamingCap3DParser
# Parse large files efficiently
parser = StreamingCap3DParser("massive_file.cap3d")
data = parser.parse_complete()
print(f"Parsed {len(data.blocks)} blocks")
print(f"Found {len(data.poly_elements)} polygonal elements")
print(f"Layers: {len(data.layers)}")
```
## CAP3D File Format Support
CAP3D-Viz provides comprehensive support for all CAP3D elements:
### Structural Elements
- **`<block>`**: 3D rectangular volumes with basepoint and vectors
- **`<poly>`**: Complex polygonal elements with custom 2D coordinates
- **`<medium>`/`<conductor>`**: Material sections with dielectric properties
### Advanced Elements
- **`<layer>`**: IC layer definitions (interconnect, via, metal, poly, contact)
- **`<window>`**: Simulation boundary definitions
- **`<task>`**: Capacitance calculation targets
- **`<coord>`**: 2D coordinate data for polygonal shapes
### Example CAP3D Block
```xml
<block>
name block1
basepoint(-2, -2, 0) <!-- Starting corner -->
v1(4, 0, 0) <!-- Edge vector 1 -->
v2(0, 4, 0) <!-- Edge vector 2 -->
hvector(0, 0, 0.3) <!-- Height/thickness -->
</block>
```
## Visualization Features
### Interactive 3D Controls
- **Mouse Controls**: Rotate, zoom, pan with intuitive interaction
- **Component Toggling**: Show/hide mediums, conductors, polygons independently
- **Layer Filtering**: Focus on specific IC layers with professional colors
- **Z-Slice Views**: Cross-sectional visualization at any height
- **Real-time Statistics**: Block counts, volume analysis, dimensional info
### Professional IC Design
- **Industry-Standard Colors**: Metal, via, poly, contact layer visualization
- **Level of Detail (LOD)**: Intelligent prioritization for large datasets
- **Batch Rendering**: Optimized trace grouping for smooth interaction
- **Export Options**: Save visualizations as interactive HTML files
## Architecture
CAP3D-Viz uses a modular architecture for optimal performance and maintainability:
```
cap3d_viz/
├── data_models.py # Core data structures (Block, Layer, etc.)
├── parser.py # State-machine parser with streaming support
├── visualizer.py # 3D visualization engine with caching
├── utils.py # Convenience functions and utilities
└── __init__.py # Main package interface
```
### State-Machine Parser
- **Context-Aware**: Only checks relevant conditions per parsing state
- **Dispatch Tables**: Direct function mapping eliminates conditional chains
- **Streaming Architecture**: Memory-efficient line-by-line processing
- **Pre-compiled Patterns**: Cached operations for maximum speed
## Scientific Applications
CAP3D-Viz is designed for researchers and engineers working with:
- **Integrated Circuit Design**: Visualization of IC layouts and parasitic structures
- **Capacitance Analysis**: 3D exploration of capacitive coupling effects
- **EDA Tool Integration**: Workflow enhancement for design automation
- **Research Publications**: High-quality figures for academic papers
- **Design Verification**: Visual validation of 3D geometry structures
## Documentation
- **API Reference**: [https://cap3d-viz.readthedocs.io/](https://cap3d-viz.readthedocs.io/)
- **Tutorials**: [docs/tutorials/](docs/tutorials/)
- **Examples**: [examples/](examples/)
- **Performance Guide**: [docs/performance.md](docs/performance.md)
## Testing
Run the test suite to verify installation:
```bash
# Install development dependencies
pip install -e .[dev]
# Run all tests
pytest
# Run with coverage
pytest --cov=cap3d_viz
# Run performance benchmarks
python -m cap3d_viz.benchmarks
```
## Contributing
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
### Development Setup
```bash
git clone https://github.com/your-repo/cap3d-viz.git
cd cap3d-viz
pip install -e .[dev]
pre-commit install
```
### Running Tests
```bash
pytest tests/
black cap3d_viz/
flake8 cap3d_viz/
mypy cap3d_viz/
```
## 📄 Citation
If you use CAP3D-Viz in your research, please cite:
```bibtex
@software{cap3d_viz_2025,
author = {Ahmed Ali},
title = {{CAP3D-Viz}: High-Performance {3D} Visualization for {CAP3D} Files},
version = {1.0.0},
date = {2025-07-24},
publisher = {Zenodo},
doi = {10.5281/zenodo.16406690},
url = {https://doi.org/10.5281/zenodo.16406690},
repository= {https://github.com/andykofman/RWCap_view},
type = {software}
}
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Acknowledgments
- **RWCap Development Team**: For the CAP3D file format specification
## Support
- **Issues**: [GitHub Issues](https://github.com/andykofman/RWCap_view/issues)
---
*CAP3D-Viz: Advancing 3D visualization for integrated circuit design and capacitance analysis.*
Raw data
{
"_id": null,
"home_page": "https://github.com/andykofman/RWCap_view",
"name": "cap3d-viz",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Ahmed Ali <ali.a@aucegypt.edu>",
"keywords": "3D visualization, CAP3D, capacitance, integrated circuits, EDA, scientific computing, plotly, parsing, state machine",
"author": "Ahmed Ali",
"author_email": "Ahmed Ali <ali.a@aucegypt.edu>",
"download_url": "https://files.pythonhosted.org/packages/c8/dc/e5c93e4f8803d4f26cbb2fe1d56d1719decc6da5e8a2894b985b4aaf9d9b/cap3d_viz-1.0.0.tar.gz",
"platform": null,
"description": "# CAP3D-Viz: High-Performance 3D Visualization for CAP3D Files\r\n\r\n[](https://badge.fury.io/py/cap3d-viz)\r\n[](https://pypi.org/project/cap3d-viz/)\r\n[](https://opensource.org/licenses/MIT)\r\n[](https://doi.org/10.5281/zenodo.16406690)\r\n\r\n**CAP3D-Viz** is a high-performance Python package for parsing and visualizing 3D geometry from CAP3D files generated by capacitance solvers. It features state-machine parsing, memory-efficient streaming, and interactive 3D visualization optimized for large datasets in integrated circuit design workflows.\r\n\r\n## Key Features\r\n\r\n- **State-Machine Parser**: 70-80% reduction in condition checking with dispatch tables\r\n- **Memory Efficient**: Handles 10,000+ blocks with <8MB memory usage\r\n- **High Performance**: Parse speed of 9,882+ blocks/second\r\n- **Interactive 3D Visualization**: Real-time filtering and exploration\r\n- **Batched Rendering**: Smooth visualization of 50k+ blocks\r\n- **Professional IC Features**: Industry-standard layer colors and visualization modes\r\n- **Comprehensive Format Support**: Blocks, polygons, layers, windows, and tasks\r\n\r\n## Performance Benchmarks\r\n\r\n| Metric | Performance |\r\n| ------------------------ | ------------------------------------- |\r\n| **Parse Speed** | 9,882 blocks/second |\r\n| **Memory Usage** | <8MB for 10k blocks |\r\n| **Filter Latency** | <500ms for interactive operations |\r\n| **Rendering** | 50k+ blocks with batched optimization |\r\n\r\n## Installation\r\n\r\n### From PyPI (Recommended)\r\n\r\n```bash\r\npip install cap3d-viz\r\n```\r\n\r\n### Development Installation\r\n\r\n```bash\r\ngit clone https://github.com/your-repo/cap3d-viz.git\r\ncd cap3d-viz\r\npip install -e .[dev]\r\n```\r\n\r\n### Dependencies\r\n\r\n- Python \u22653.8\r\n- NumPy \u22651.19.0\r\n- Plotly \u22655.0.0\r\n- Matplotlib \u22653.3.0\r\n\r\n## Quick Start\r\n\r\n### Basic Usage\r\n\r\n```python\r\nfrom cap3d_viz import load_and_visualize\r\n\r\n# Load and visualize a CAP3D file \r\nfig = load_and_visualize(\"your_file.cap3d\")\r\nfig.show()\r\n```\r\n\r\n### Advanced Usage\r\n\r\n```python\r\nfrom cap3d_viz import OptimizedCap3DVisualizer\r\n\r\n# Create visualizer with custom settings\r\nvisualizer = OptimizedCap3DVisualizer(max_blocks_display=50000)\r\nvisualizer.load_data(\"large_file.cap3d\")\r\n\r\n# Create interactive visualization\r\nfig = visualizer.create_optimized_visualization(\r\n show_mediums=True,\r\n show_conductors=True, \r\n show_polys=True,\r\n use_batched_rendering=True, # For large datasets\r\n z_slice=5.0, # Cross-section view\r\n opacity_mediums=0.3,\r\n opacity_conductors=0.9\r\n)\r\n\r\nfig.show()\r\n```\r\n\r\n### Performance-Optimized Parsing\r\n\r\n```python\r\nfrom cap3d_viz import StreamingCap3DParser\r\n\r\n# Parse large files efficiently\r\nparser = StreamingCap3DParser(\"massive_file.cap3d\")\r\ndata = parser.parse_complete()\r\n\r\nprint(f\"Parsed {len(data.blocks)} blocks\")\r\nprint(f\"Found {len(data.poly_elements)} polygonal elements\")\r\nprint(f\"Layers: {len(data.layers)}\")\r\n```\r\n\r\n## CAP3D File Format Support\r\n\r\nCAP3D-Viz provides comprehensive support for all CAP3D elements:\r\n\r\n### Structural Elements\r\n\r\n- **`<block>`**: 3D rectangular volumes with basepoint and vectors\r\n- **`<poly>`**: Complex polygonal elements with custom 2D coordinates\r\n- **`<medium>`/`<conductor>`**: Material sections with dielectric properties\r\n\r\n### Advanced Elements\r\n\r\n- **`<layer>`**: IC layer definitions (interconnect, via, metal, poly, contact)\r\n- **`<window>`**: Simulation boundary definitions\r\n- **`<task>`**: Capacitance calculation targets\r\n- **`<coord>`**: 2D coordinate data for polygonal shapes\r\n\r\n### Example CAP3D Block\r\n\r\n```xml\r\n<block>\r\n name block1\r\n basepoint(-2, -2, 0) <!-- Starting corner -->\r\n v1(4, 0, 0) <!-- Edge vector 1 -->\r\n v2(0, 4, 0) <!-- Edge vector 2 --> \r\n hvector(0, 0, 0.3) <!-- Height/thickness -->\r\n</block>\r\n```\r\n\r\n## Visualization Features\r\n\r\n### Interactive 3D Controls\r\n\r\n- **Mouse Controls**: Rotate, zoom, pan with intuitive interaction\r\n- **Component Toggling**: Show/hide mediums, conductors, polygons independently\r\n- **Layer Filtering**: Focus on specific IC layers with professional colors\r\n- **Z-Slice Views**: Cross-sectional visualization at any height\r\n- **Real-time Statistics**: Block counts, volume analysis, dimensional info\r\n\r\n### Professional IC Design\r\n\r\n- **Industry-Standard Colors**: Metal, via, poly, contact layer visualization\r\n- **Level of Detail (LOD)**: Intelligent prioritization for large datasets\r\n- **Batch Rendering**: Optimized trace grouping for smooth interaction\r\n- **Export Options**: Save visualizations as interactive HTML files\r\n\r\n## Architecture\r\n\r\nCAP3D-Viz uses a modular architecture for optimal performance and maintainability:\r\n\r\n```\r\ncap3d_viz/\r\n\u251c\u2500\u2500 data_models.py # Core data structures (Block, Layer, etc.)\r\n\u251c\u2500\u2500 parser.py # State-machine parser with streaming support\r\n\u251c\u2500\u2500 visualizer.py # 3D visualization engine with caching\r\n\u251c\u2500\u2500 utils.py # Convenience functions and utilities\r\n\u2514\u2500\u2500 __init__.py # Main package interface\r\n```\r\n\r\n### State-Machine Parser\r\n\r\n- **Context-Aware**: Only checks relevant conditions per parsing state\r\n- **Dispatch Tables**: Direct function mapping eliminates conditional chains\r\n- **Streaming Architecture**: Memory-efficient line-by-line processing\r\n- **Pre-compiled Patterns**: Cached operations for maximum speed\r\n\r\n## Scientific Applications\r\n\r\nCAP3D-Viz is designed for researchers and engineers working with:\r\n\r\n- **Integrated Circuit Design**: Visualization of IC layouts and parasitic structures\r\n- **Capacitance Analysis**: 3D exploration of capacitive coupling effects\r\n- **EDA Tool Integration**: Workflow enhancement for design automation\r\n- **Research Publications**: High-quality figures for academic papers\r\n- **Design Verification**: Visual validation of 3D geometry structures\r\n\r\n## Documentation\r\n\r\n- **API Reference**: [https://cap3d-viz.readthedocs.io/](https://cap3d-viz.readthedocs.io/)\r\n- **Tutorials**: [docs/tutorials/](docs/tutorials/)\r\n- **Examples**: [examples/](examples/)\r\n- **Performance Guide**: [docs/performance.md](docs/performance.md)\r\n\r\n## Testing\r\n\r\nRun the test suite to verify installation:\r\n\r\n```bash\r\n# Install development dependencies\r\npip install -e .[dev]\r\n\r\n# Run all tests\r\npytest\r\n\r\n# Run with coverage\r\npytest --cov=cap3d_viz\r\n\r\n# Run performance benchmarks\r\npython -m cap3d_viz.benchmarks\r\n```\r\n\r\n## Contributing\r\n\r\nWe welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.\r\n\r\n### Development Setup\r\n\r\n```bash\r\ngit clone https://github.com/your-repo/cap3d-viz.git\r\ncd cap3d-viz\r\npip install -e .[dev]\r\npre-commit install\r\n```\r\n\r\n### Running Tests\r\n\r\n```bash\r\npytest tests/\r\nblack cap3d_viz/\r\nflake8 cap3d_viz/\r\nmypy cap3d_viz/\r\n```\r\n\r\n## \ud83d\udcc4 Citation\r\n\r\nIf you use CAP3D-Viz in your research, please cite:\r\n\r\n```bibtex\r\n@software{cap3d_viz_2025,\r\n author = {Ahmed Ali},\r\n title = {{CAP3D-Viz}: High-Performance {3D} Visualization for {CAP3D} Files},\r\n version = {1.0.0},\r\n date = {2025-07-24},\r\n publisher = {Zenodo},\r\n doi = {10.5281/zenodo.16406690},\r\n url = {https://doi.org/10.5281/zenodo.16406690},\r\n repository= {https://github.com/andykofman/RWCap_view},\r\n type = {software}\r\n}\r\n\r\n```\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n\r\n## Acknowledgments\r\n\r\n- **RWCap Development Team**: For the CAP3D file format specification\r\n\r\n## Support\r\n\r\n- **Issues**: [GitHub Issues](https://github.com/andykofman/RWCap_view/issues)\r\n\r\n---\r\n\r\n*CAP3D-Viz: Advancing 3D visualization for integrated circuit design and capacitance analysis.*\r\n",
"bugtrack_url": null,
"license": "MIT License\r\n \r\n Copyright (c) 2025 Ahmed Ali & Ahmed El-Sousy\r\n \r\n \r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n \r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n \r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE.\r\n ",
"summary": "High-Performance 3D Visualization for CAP3D Files",
"version": "1.0.0",
"project_urls": {
"Documentation": "https://cap3d-viz.readthedocs.io/",
"Homepage": "https://github.com/andykofman/RWCap_view",
"Issues": "https://github.com/andykofman/RWCap_view/issues",
"Repository": "https://github.com/andykofman/RWCap_view"
},
"split_keywords": [
"3d visualization",
" cap3d",
" capacitance",
" integrated circuits",
" eda",
" scientific computing",
" plotly",
" parsing",
" state machine"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "69cb4494809abf5620855100d7b903d76029365215ed635fddcdb26721f5e99d",
"md5": "f628a043bf27d015bf46138027472c8c",
"sha256": "0567d0eb9d10a0dfe91782844cd3963f0e28e93e53b8ac0fdc1ea177dd5b2c28"
},
"downloads": -1,
"filename": "cap3d_viz-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f628a043bf27d015bf46138027472c8c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 25102,
"upload_time": "2025-08-21T09:17:54",
"upload_time_iso_8601": "2025-08-21T09:17:54.252613Z",
"url": "https://files.pythonhosted.org/packages/69/cb/4494809abf5620855100d7b903d76029365215ed635fddcdb26721f5e99d/cap3d_viz-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8dce5c93e4f8803d4f26cbb2fe1d56d1719decc6da5e8a2894b985b4aaf9d9b",
"md5": "c75da1857752db1a19c5213b2a397082",
"sha256": "92ba342fea7717ccde49d5374a9321138c9684254bec4f5085dce2b0f7418c35"
},
"downloads": -1,
"filename": "cap3d_viz-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "c75da1857752db1a19c5213b2a397082",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 35417,
"upload_time": "2025-08-21T09:17:56",
"upload_time_iso_8601": "2025-08-21T09:17:56.142591Z",
"url": "https://files.pythonhosted.org/packages/c8/dc/e5c93e4f8803d4f26cbb2fe1d56d1719decc6da5e8a2894b985b4aaf9d9b/cap3d_viz-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-21 09:17:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "andykofman",
"github_project": "RWCap_view",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "numpy",
"specs": [
[
">=",
"1.19.0"
]
]
},
{
"name": "plotly",
"specs": [
[
">=",
"5.0.0"
]
]
},
{
"name": "matplotlib",
"specs": [
[
">=",
"3.3.0"
]
]
},
{
"name": "pytest",
"specs": [
[
">=",
"6.0"
]
]
},
{
"name": "pytest-cov",
"specs": []
},
{
"name": "black",
"specs": []
},
{
"name": "flake8",
"specs": []
},
{
"name": "mypy",
"specs": []
},
{
"name": "scipy",
"specs": [
[
">=",
"1.7.0"
]
]
},
{
"name": "numba",
"specs": [
[
">=",
"0.56.0"
]
]
},
{
"name": "sphinx",
"specs": [
[
">=",
"4.0"
]
]
},
{
"name": "sphinx-rtd-theme",
"specs": []
}
],
"lcname": "cap3d-viz"
}