Metadata-Version: 2.4
Name: decentmesh-shareboard
Version: 0.3.4
Summary: Decentralized copy-paste sharing application for DecentMesh
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Communications
Requires-Python: >=3.9
Requires-Dist: cbor2>=5.6.0
Requires-Dist: cryptography>=41.0.0
Requires-Dist: decent-python-bridge>=0.1.4
Requires-Dist: pyside6>=6.5.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# ShareBoard

A decentralized copy-paste sharing application built on DecentMesh.

## Features

- 🔐 End-to-end encrypted text sharing
- 👥 Persistent contact management
- 🌐 Decentralized mesh network communication
- 🎨 Modern dark glassmorphism UI

## Installation

```bash
cd shareboard
pip install -e .
```

## Usage

```bash
# Run the application
python -m shareboard

# Or use the entry point
shareboard
```

## First Run

1. Enter your display name when prompted
2. Your identity key will be generated automatically
3. Click "Copy My Key" to share with contacts
4. Add contacts by copying their key and clicking "Add from Clipboard"

## Storage

All data is stored in `~/.shareboard/`:

- `my_identity.json` - Your identity (name + keys)
- `identities.json` - Your contacts
- `history.json` - Shared text history

## Requirements

- Python 3.9+
- PySide6
- DecentMesh network access
