Metadata-Version: 2.4
Name: deprecated-subclass
Version: 0.1.0
Summary: A Type Wrapper for lazily flagging that a class's subclassing capabilities are deprecated.
Author-email: Vizonex <VizonexBusiness@gmail.com>
Project-URL: homepage, https://github.com/Vizonex/deprecated-subclass
Project-URL: repository, https://github.com/Vizonex/deprecated-subclass.git
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Deprecated-Subclass

Originally apart of cyares, it is a small library made for the sole purpose of deprecating a class's 
subclassing features without needing to place a `warnings.deprecated` 
wrapper around a  `__init_subclass__` function or needing to define it. 
It also has compatability for `3.10` and onwards.

```python
from deprecated_subclass import deprecated_subclass

@deprecated_subclass("deprecated because I wanted to.")
class DeprecatedSubclass:
    ...
```



