Metadata-Version: 2.1
Name: sophy-python
Version: 0.1.0
Summary: A Slack notification utility
Home-page: https://github.com/SidhartK/sophy-python
Author: Sidhart Krishnan
Author-email: Sidhart Krishnan <sidhartkrishnan@gmail.com>
Project-URL: Homepage, https://github.com/yourusername/sophy-python
Project-URL: Repository, https://github.com/yourusername/sophy-python
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.md
Requires-Dist: requests>=2.25.1
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: build; extra == "dev"

# Sophy

A simple Slack notification utility.

## Installation

```bash
pip install sophy-python
```

## Usage

```python
from sophy import Slackbot

# Set SLACK_TOKEN environment variable first
bot = Slackbot('user@example.com')
bot.notify('Hello from Sophy!')
```
