Metadata-Version: 2.4
Name: scitex-compat
Version: 0.1.3
Summary: Backward compatibility shims and deprecation wrappers
Project-URL: Homepage, https://github.com/ywatanabe1989/scitex-compat
Project-URL: Repository, https://github.com/ywatanabe1989/scitex-compat.git
Project-URL: Issues, https://github.com/ywatanabe1989/scitex-compat/issues
Author-email: Yusuke Watanabe <ywatanabe@scitex.ai>
License-Expression: AGPL-3.0-only
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# scitex-compat

<!-- scitex-badges:start -->
[![PyPI](https://img.shields.io/pypi/v/scitex-compat.svg)](https://pypi.org/project/scitex-compat/)
[![Python](https://img.shields.io/pypi/pyversions/scitex-compat.svg)](https://pypi.org/project/scitex-compat/)
[![Tests](https://github.com/ywatanabe1989/scitex-compat/actions/workflows/test.yml/badge.svg)](https://github.com/ywatanabe1989/scitex-compat/actions/workflows/test.yml)
[![Install Test](https://github.com/ywatanabe1989/scitex-compat/actions/workflows/install-test.yml/badge.svg)](https://github.com/ywatanabe1989/scitex-compat/actions/workflows/install-test.yml)
[![Coverage](https://codecov.io/gh/ywatanabe1989/scitex-compat/graph/badge.svg)](https://codecov.io/gh/ywatanabe1989/scitex-compat)
[![Docs](https://readthedocs.org/projects/scitex-compat/badge/?version=latest)](https://scitex-compat.readthedocs.io/en/latest/)
[![License: AGPL v3](https://img.shields.io/badge/license-AGPL_v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
<!-- scitex-badges:end -->

Backward compatibility shims and deprecation wrappers for the SciTeX ecosystem.

## Installation

```bash
pip install scitex-compat
```

## Usage

```python
from scitex_compat import deprecated

@deprecated("new_function_name", removal_version="3.0")
def old_function():
    pass
```

## License

AGPL-3.0
