Metadata-Version: 2.4
Name: chartexa
Version: 0.1.1
Summary: High-performance charting engine for Python — render publication-quality charts via .NET interop
Author-email: Kedevo <dev@kedevo.com>
License: MIT
Project-URL: Homepage, https://github.com/redrum88/Chartexa
Project-URL: Repository, https://github.com/redrum88/Chartexa
Project-URL: Issues, https://github.com/redrum88/Chartexa/issues
Project-URL: Changelog, https://github.com/redrum88/Chartexa/blob/main/CHANGELOG.md
Keywords: charting,charts,plotting,visualization,data-visualization,graphs
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pythonnet>=3.0.3
Requires-Dist: clr-loader>=0.2.6
Dynamic: license-file

# Chartexa — Python Package

> High-performance charting engine for Python, powered by the Chartexa .NET engine.

## Installation

```bash
pip install chartexa
```

### Prerequisites

- Python 3.9+
- [.NET 10 Runtime](https://dotnet.microsoft.com/download) installed on your system

## Quick Start

```python
from chartexa import ChartSurface

chart = ChartSurface(width=800, height=600)
chart.render_to_file("my_chart.png")
```

## How It Works

Chartexa for Python uses [pythonnet](https://github.com/pythonnet/pythonnet) to call into the high-performance Chartexa .NET charting engine. The Python package bundles the compiled .NET assemblies and provides a Pythonic API wrapper.

## Links

- [GitHub Repository](https://github.com/redrum88/Chartexa)
- [NuGet Packages](https://www.nuget.org/profiles/Kedevo)
- [Changelog](https://github.com/redrum88/Chartexa/blob/main/CHANGELOG.md)

## License

MIT
