Metadata-Version: 2.4
Name: nl2cad-core
Version: 0.2.0
Summary: NL2CAD — IFC/DXF parsing, DIN 277 areas, GAEB export, NLP intent (mono-distribution)
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,din277,dxf,gaeb,ifc,nlp
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: all
Requires-Dist: httpx>=0.27; extra == 'all'
Requires-Dist: ifcopenshell>=0.8.0; extra == 'all'
Requires-Dist: openpyxl>=3.1; extra == 'all'
Provides-Extra: dev
Requires-Dist: httpx>=0.27; extra == 'dev'
Requires-Dist: ifcopenshell>=0.8.0; extra == 'dev'
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: openpyxl>=3.1; 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: gaeb
Requires-Dist: openpyxl>=3.1; extra == 'gaeb'
Provides-Extra: ifc
Requires-Dist: ifcopenshell>=0.8.0; extra == 'ifc'
Provides-Extra: nlp
Requires-Dist: httpx>=0.27; extra == 'nlp'
Provides-Extra: nlp-anthropic
Requires-Dist: anthropic>=0.40; extra == 'nlp-anthropic'
Requires-Dist: httpx>=0.27; extra == 'nlp-anthropic'
Provides-Extra: nlp-openai
Requires-Dist: httpx>=0.27; extra == 'nlp-openai'
Requires-Dist: openai>=1.0; extra == 'nlp-openai'
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, ...
