Metadata-Version: 2.3
Name: stickybisht
Version: 0.1.0
Summary: A customizable sticky notes application
Author-email: pranshu <pranshu.bisht.java@gmail.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Desktop Environment
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# StickyBisht

A lightweight, customizable sticky notes application built with Python and Tkinter.

## Project Structure
```
stickybisht/
├── LICENSE
├── README.md
├── pyproject.toml
├── src/
│   └── stickybisht/
│       ├── __init__.py
│       ├── __main__.py
│       └── sticky_notes.py
└── requirements.txt
```

## Installation

```bash
pip install stickybisht
```

## Usage

After installation, you can run the application in two ways:

1. From command line:
```bash
stickybisht
```

2. From Python:
```python
from stickybisht import StickyNote
note = StickyNote()
note.run()
```

## Dependencies
- Python 3.8+
- tkinter (usually comes with Python)

## Development

1. Clone the repository:
```bash
git clone https://github.com/kitparl/stickybisht
cd stickybisht
```

2. Create and activate virtual environment:
```bash
python -m venv venv
source venv/bin/activate  # Linux/macOS
venv\Scripts\activate     # Windows
```

3. Install in development mode:
```bash
pip install -e .
```

## License

MIT License
