Metadata-Version: 2.4
Name: quantumcoin
Version: 1.0.0
Summary: A production-ready quantum-resistant cryptocurrency
Home-page: https://github.com/quantumcoin/quantumcoin
Author: QuantumCoin Team
Author-email: QuantumCoin Team <team@quantumcoin.dev>
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pqcrypto>=0.1.0
Requires-Dist: cryptography>=42.0
Requires-Dist: aiohttp>=3.9
Requires-Dist: orjson>=3.9
Requires-Dist: aiofiles>=23.2
Provides-Extra: dev
Requires-Dist: pytest>=7.4; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# QuantumCoin
A production-ready quantum-resistant cryptocurrency built with Python.

## Features

- **Quantum-Resistant Cryptography**: Hybrid ECDSA P-256 + ML-DSA-44 (NIST standard)
- **Wallet**: Secure wallet with PEM key storage
- **Blockchain**: Full PoW mining with UTXO
- **Faucet**: Automatic 1000 QTC for new wallets
- **RPC Server**: JSON-RPC API (port 8332 mainnet, 18332 testnet)
- **P2P Network**: Peer-to-peer node communication
- **Block Explorer**: Web UI
- **Smart Contracts**: Storage, ICO, Voting, Token support
- **Testnet**: Separate test network

## Quick Start

```bash
# Install
pip install quantumcoin

# Create wallet
quantumcoin --wallet

# Send QTC
quantumcoin --to <address> --amount 100 --fee 0.01 --mine

# View balance
quantumcoin --info
```

## Development

```bash
# Clone and install
git clone https://github.com/quantumcoin/quantumcoin.git
cd quantumcoin
pip install -e .

# Run tests
pytest

# Run node
python node.py --wallet
```

## Architecture

- `src/quantumcoin.py`: Core blockchain + crypto engine
- `node.py`: CLI node implementation

## Status: PRODUCTION READY ✅

All features tested and working with real post-quantum cryptography.

## License

MIT
