Metadata-Version: 2.4
Name: gtable-python
Version: 0.3.6.9000
Summary: Python port of the R gtable package (tracks R gtable 0.3.6.9000)
Project-URL: Homepage, https://github.com/R2pyBioinformatics/gtable_py
Project-URL: Repository, https://github.com/R2pyBioinformatics/gtable_py
Project-URL: Issues, https://github.com/R2pyBioinformatics/gtable_py/issues
Project-URL: Documentation, https://github.com/R2pyBioinformatics/gtable_py#readme
Author-email: Jeffery Liu <jeffliu.lucky@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: R-port,ggplot2,grid,gtable,layout,visualization
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: numpy>=1.24
Requires-Dist: rgrid-python>=4.5.3
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs; extra == 'docs'
Requires-Dist: mkdocs-jupyter; extra == 'docs'
Requires-Dist: mkdocs-material; extra == 'docs'
Requires-Dist: mkdocstrings[python]; extra == 'docs'
Description-Content-Type: text/markdown

# gtable_py

Python port of the R **gtable** package (tracks R gtable 0.3.6.9000).

Depends on [`rgrid-python`](https://pypi.org/project/rgrid-python/) (R's grid
graphics re-implemented in Python).

## Installation

```bash
pip install gtable-python
```

Or, for a local development checkout:

```bash
git clone https://github.com/R2pyBioinformatics/gtable_py.git
cd gtable_py
pip install -e ".[dev]"
```

## Quick Start

```python
import gtable_py
```

## Documentation

```bash
pip install -e ".[docs]"
mkdocs serve
```
