Metadata-Version: 2.4
Name: nl2cad-core
Version: 0.1.0
Summary: Core IFC/DXF domain models and parsers for nl2cad ecosystem
Project-URL: Homepage, https://github.com/achimdehnert/nl2cad
Project-URL: Repository, https://github.com/achimdehnert/nl2cad
Project-URL: Issues, https://github.com/achimdehnert/nl2cad/issues
Author-email: Achim Dehnert <achim@dehnert.com>
License: MIT
Keywords: architecture,bim,building,cad,dxf,ifc
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: ezdxf>=1.3.0
Provides-Extra: dev
Requires-Dist: ifcopenshell>=0.8.0; extra == 'dev'
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Provides-Extra: ifc
Requires-Dist: ifcopenshell>=0.8.0; extra == 'ifc'
Description-Content-Type: text/markdown

# nl2cad-core

IFC/DXF domain models, parsers, handler pipeline and quality checks for the nl2cad ecosystem.

## Installation

```bash
pip install nl2cad-core
```

## Packages

- `nl2cad.core.models` — IFCModel, IFCRoom, DXFModel, ...
- `nl2cad.core.parsers` — IFCParser, DXFParser
- `nl2cad.core.handlers` — BaseCADHandler, CADHandlerPipeline, IFCQualityHandler
- `nl2cad.core.quality` — IFCQualityChecker, IFCQualityReport
- `nl2cad.core.exceptions` — IFCParseError, DXFParseError, ...
