Metadata-Version: 2.4
Name: scitex-compat
Version: 0.1.1
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
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

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
