Metadata-Version: 2.4
Name: vizlychart
Version: 2.4.0
Summary: Professional data visualization library with advanced features: 3D plotting, animations, scientific charts, and matplotlib-level control
Home-page: https://github.com/vizly/vizly
Author: Infinidatum Corporation
Author-email: Infinidatum Corporation <durai@infinidatum.net>
Maintainer-email: Infinidatum Corporation <durai@infinidatum.net>
License: MIT
Project-URL: Homepage, https://github.com/vizlychart/vizlychart
Project-URL: Documentation, https://vizlychart.readthedocs.io/
Project-URL: Repository, https://github.com/vizlychart/vizlychart
Project-URL: Bug Tracker, https://github.com/vizlychart/vizlychart/issues
Project-URL: Examples, https://github.com/vizlychart/vizlychart/tree/main/examples
Keywords: visualization,plotting,charts,graphs,data-science,ultra-fast,high-performance,gpu-acceleration,svg-rendering,hdr-colors,professional-typography,precision-rendering,matplotlib-alternative,plotly-alternative,colab-ready,scientific-visualization,engineering-plots,dashboard,real-time-plotting,publication-quality,vizlyengine,cupy,jax,nvidia-gpu,performance-optimization
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
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: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24.0
Requires-Dist: matplotlib>=3.7.0; extra == "extended"
Requires-Dist: scipy>=1.11.0; extra == "extended"
Provides-Extra: extended
Requires-Dist: matplotlib>=3.7.0; extra == "extended"
Requires-Dist: scipy>=1.11.0; extra == "extended"
Provides-Extra: gpu
Requires-Dist: cupy-cuda11x>=12.0.0; extra == "gpu"
Requires-Dist: jax>=0.4.0; extra == "gpu"
Requires-Dist: jaxlib>=0.4.0; extra == "gpu"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Requires-Dist: build>=0.10.0; extra == "dev"
Provides-Extra: all
Requires-Dist: matplotlib>=3.7.0; extra == "all"
Requires-Dist: scipy>=1.11.0; extra == "all"
Requires-Dist: cupy-cuda11x>=12.0.0; extra == "all"
Requires-Dist: jax>=0.4.0; extra == "all"
Requires-Dist: jaxlib>=0.4.0; extra == "all"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# VizlyChart

A Python visualization library focused on performance and professional output quality.

## Features

- **Fast rendering**: Optimized SVG generation with performance improvements over baseline matplotlib workflows
- **Professional output**: Clean typography with customizable fonts and spacing
- **GPU acceleration support**: Optional CuPy integration for data processing acceleration
- **Multiple chart types**: Line charts, scatter plots, bar charts, and 3D surfaces
- **Engineering utilities**: Specialized charts for technical applications

## Installation

```bash
pip install vizlychart
```

For GPU acceleration (requires NVIDIA GPU):
```bash
pip install vizlychart[gpu]
```

For extended functionality with matplotlib integration:
```bash
pip install vizlychart[extended]
```

## Quick Start

```python
import vizlychart as vc
import numpy as np

# Generate sample data
x = np.linspace(0, 10, 100)
y = np.sin(x)

# Create and customize chart
chart = vc.LineChart()
chart.plot(x, y, label='sin(x)')
chart.set_title('Sample Chart')
chart.set_labels('X-axis', 'Y-axis')

# Save as SVG
chart.save('output.svg')
```

## Performance

VizlyChart focuses on practical performance improvements:
- SVG-first rendering for scalable output
- Memory-efficient processing for large datasets
- Optional GPU acceleration for data preprocessing

## Requirements

- Python 3.7+
- NumPy 1.24+

Optional dependencies:
- CuPy (GPU acceleration)
- Matplotlib (extended compatibility)
- SciPy (engineering functions)

## Contributing

We welcome contributions! Here's how to get started:

### Development Setup

1. Clone the repository:
```bash
git clone https://github.com/vizlychart/vizlychart.git
cd vizlychart
```

2. Create a virtual environment:
```bash
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
```

3. Install in development mode:
```bash
pip install -e .[dev]
```

### Running Tests

```bash
pytest
```

### Code Style

We use Black for formatting and Ruff for linting:
```bash
black src tests
ruff check src tests
```

### Ways to Contribute

- **Bug reports**: Open an issue describing the problem with minimal reproduction steps
- **Feature requests**: Suggest new chart types or functionality improvements
- **Documentation**: Help improve examples, docstrings, or tutorials
- **Code contributions**: Fix bugs, implement features, or optimize performance
- **Testing**: Add test cases or improve test coverage

### Pull Request Guidelines

1. Fork the repository and create a feature branch
2. Write tests for new functionality
3. Ensure all tests pass and code follows style guidelines
4. Update documentation if needed
5. Submit a pull request with a clear description

### Areas We'd Love Help With

- Additional chart types (violin plots, heat maps, etc.)
- Performance optimizations
- Better error messages and validation
- Cross-platform testing
- Documentation and examples

## License

MIT License - see LICENSE file for details.

## Support

- **Issues**: Report bugs or request features via [GitHub Issues](https://github.com/vizlychart/vizlychart/issues)
- **Discussions**: Community discussion and questions
- **Documentation**: More examples and API documentation coming soon

---

Built with focus on practical performance and professional output quality.
