Metadata-Version: 2.1
Name: doglib
Version: 0.1.1
Summary: A simple package to manage dogs. Its aim is to demonstrate the use of packages in Python.
Author: Anton
Author-email: anton.pollak@starcode.de
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

# Doglib

A simple package to manage dogs. Its aim is to demonstrate the use of packages in Python.

Example use:
    
```python
from doglib import Dog

buddy = Dog("Buddy", 7, "small")
buddy.bark()
buddy.feed()
```
