Metadata-Version: 2.1
Name: py-poo
Version: 0.1.1
Summary: Python poo non native features
Home-page: https://github.com/iamgabs/python-poo
Author: Gabriel Carvalho
Author-email: contatotrabalhogab@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# How to use the library ?

You can import the @interface method and use it as a decorator
in your classes

```python
@interface
class Animal:
    def walk(): pass
    def eat(): pass
```

And then inherit from your interface class

```python
@interface
class Dog(Animal):
    def walk(): pass
    def eat(): pass
```
