Metadata-Version: 2.3
Name: stickybisht
Version: 0.1.1
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(still working) sticky notes application built with Python and Tkinter.

## Project Structure

```
stickybisht/
├── LICENSE
├── README.md
├── pyproject.toml
├── src/
│   └── stickybisht/
│       ├── __init__.py
│       ├── __main__.py
│       └── stickybisht_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 .
```

## Contributing 🤝

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/your_username/AmazingFeature`)
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the branch (`git push origin feature/your_username/AmazingFeature`)
5. Open a Pull Request

## License

MIT License
