Metadata-Version: 2.4
Name: scigraphs-core
Version: 0.2.1
Summary: Blender-free SciGraphs library: graphs, layouts, colormaps, OSM/geo, pipeline schema.
Author: José Marín
License: MIT License
        
        Copyright (c) 2026 José Marín
        
        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.
        
Project-URL: Homepage, https://github.com/SciBlend/SciGraphs
Project-URL: Repository, https://github.com/SciBlend/SciGraphs
Project-URL: Issues, https://github.com/SciBlend/SciGraphs/issues
Project-URL: Documentation, https://github.com/SciBlend/SciGraphs/tree/main/docs
Keywords: graph,network,layout,osm,geospatial,blender
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.23
Provides-Extra: networkx
Requires-Dist: networkx>=2.8; extra == "networkx"
Provides-Extra: scipy
Requires-Dist: scipy>=1.9; extra == "scipy"
Provides-Extra: igraph
Requires-Dist: python-igraph>=0.10; extra == "igraph"
Provides-Extra: rustworkx
Requires-Dist: rustworkx>=0.13; extra == "rustworkx"
Provides-Extra: geo
Requires-Dist: geopandas>=0.13; extra == "geo"
Requires-Dist: shapely>=2.0; extra == "geo"
Requires-Dist: pyproj>=3.4; extra == "geo"
Requires-Dist: osmnx>=1.6; extra == "geo"
Provides-Extra: raster
Requires-Dist: rasterio>=1.3; extra == "raster"
Requires-Dist: pillow>=9; extra == "raster"
Requires-Dist: GDAL>=3.6; extra == "raster"
Provides-Extra: urban
Requires-Dist: city2graph>=0.3; extra == "urban"
Provides-Extra: sql
Requires-Dist: pandas>=2.0; extra == "sql"
Requires-Dist: psycopg[binary]>=3.1; extra == "sql"
Requires-Dist: mysql-connector-python>=8.0; extra == "sql"
Requires-Dist: pymssql>=2.2; extra == "sql"
Provides-Extra: pipeline
Requires-Dist: PyYAML>=6.0; extra == "pipeline"
Provides-Extra: net
Requires-Dist: requests>=2.28; extra == "net"
Provides-Extra: cluster
Requires-Dist: pysurprise>=1.1; extra == "cluster"
Requires-Dist: scikit-learn>=1.2; extra == "cluster"
Provides-Extra: colormaps
Requires-Dist: matplotlib>=3.6; extra == "colormaps"
Provides-Extra: all
Requires-Dist: networkx>=2.8; extra == "all"
Requires-Dist: scipy>=1.9; extra == "all"
Requires-Dist: python-igraph>=0.10; extra == "all"
Requires-Dist: rustworkx>=0.13; extra == "all"
Requires-Dist: geopandas>=0.13; extra == "all"
Requires-Dist: shapely>=2.0; extra == "all"
Requires-Dist: pyproj>=3.4; extra == "all"
Requires-Dist: osmnx>=1.6; extra == "all"
Requires-Dist: city2graph>=0.3; extra == "all"
Requires-Dist: pandas>=2.0; extra == "all"
Requires-Dist: psycopg[binary]>=3.1; extra == "all"
Requires-Dist: mysql-connector-python>=8.0; extra == "all"
Requires-Dist: pymssql>=2.2; extra == "all"
Requires-Dist: PyYAML>=6.0; extra == "all"
Requires-Dist: requests>=2.28; extra == "all"
Requires-Dist: pysurprise>=1.1; extra == "all"
Requires-Dist: scikit-learn>=1.2; extra == "all"
Requires-Dist: matplotlib>=3.6; extra == "all"
Dynamic: license-file

# scigraphs-core

Graph algorithms, layouts, colormaps, OSM/geo helpers, and pipeline schema —
the SciGraphs bits that never touch Blender.

```bash
pip install ./core
```

Needs only numpy. Optional extras (`networkx`, `geo`, `sql`, …) are in
`pyproject.toml`. Import as `scigraphs_core`.

The add-on uses this package; this package never imports the add-on. Mesh
building, scene I/O, and rendering stay in the add-on / `scigraphs-engine`.

MIT. See `LICENSES.md` at the repo root.
