Metadata-Version: 2.4
Name: cardano-python-signing-module
Version: 0.1.0
Summary: Python signing module for Cardano transactions
Home-page: https://github.com/sidan-lab/cardano-python-signing-module
Author: Your Name
Author-email: your.email@example.com
Keywords: cardano signing cryptocurrency blockchain
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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: Programming Language :: Rust
Classifier: Programming Language :: C++
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-python
Dynamic: summary

# python-signing-module
Python signing module, implementation in Rust, ported over to C++, then to Python.

# Requirements

## Files

- **`requirements.txt`** - Runtime dependencies (currently empty - uses only standard library)
- **`requirements-build.txt`** - Dependencies needed to build from source

## Building from Source
1. Install system dependencies:
   ```bash
   # Rust
   curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
   
   # SWIG and C++ compiler
   # macOS: brew install swig && xcode-select --install
   # Ubuntu: sudo apt-get install swig build-essential
   # CentOS: sudo yum install swig && sudo yum groupinstall "Development Tools"
   ```

2. Install Python build dependencies:
   ```bash
   pip install -r requirements-build.txt
   ```

3. Build:
   ```bash
   cd src/
   python setup.py build
   ```

### Publishing
```bash
pip install -r requirements-build.txt
python publish_sdist.py
