Metadata-Version: 2.4
Name: barkpy
Version: 0.1.0
Summary: A lighthearted Python package that gives developers dog-themed emotional support.
Author: barkpy team
Project-URL: Homepage, https://github.com/swe-students-spring2026/3-package-mountain_goat
Project-URL: Repository, https://github.com/swe-students-spring2026/3-package-mountain_goat.git
Project-URL: Bug Tracker, https://github.com/swe-students-spring2026/3-package-mountain_goat/issues
Keywords: python,package,dogs,fun
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Education
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

[![Python package tests](https://github.com/swe-students-spring2026/3-package-mountain_goat/actions/workflows/ci.yml/badge.svg)](https://github.com/swe-students-spring2026/3-package-mountain_goat/actions/workflows/ci.yml)

The package is available on PyPI here:

[PASTE_PYPI_LINK_HERE](PASTE_PYPI_LINK_HERE)

barkpy is a lighthearted Python package that adds dog-themed humor to everyday developer life.

This package includes functions that can:

- turn a normal request into a dramatic puppy-eyes request
- suggest a zoomie break based on how long you have been sitting
- rewrite urgent ticket titles in dog-alert language
- generate encouragement for a developer
- help choose one option from a list

## How to install and use this package

Try installing and using your package in a separate Python project.

1. Create a `pipenv`-managed virtual environment and install the latest version of your package: `pipenv install barkpy`
2. Activate the virtual environment: `pipenv shell`
3. Create a Python program file that imports your package, e.g.

```python
from barkpy import (
    puppy_eyes_translator,
    zoomie_timer,
    mailman_alert,
    good_boy_generator,
    paw_selector,
)

### Functions and Exact Examples

```python
from barkpy import puppy_eyes_translator

message = puppy_eyes_translator("Can you review my PR?", 7)
print(message)

*whimper* Can *tilts head* you review my *big round eyes* PR? *sad tail thump* *tiny puppy sigh*

