Metadata-Version: 2.4
Name: fuels
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: pytest >=8.3.4 ; extra == 'tests'
Requires-Dist: ipdb >=0.13.13 ; extra == 'dev'
Requires-Dist: ipython >=8.12.3 ; extra == 'dev'
Provides-Extra: tests
Provides-Extra: dev
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# fuels-python

Python bindings for smart contract interaction using the `fuels` Rust SDK.

## Development environment install

See development dependencies before proceeding.

```bash
uv tool install maturin
uv venv
source .venv/bin/activate
uv pip install .
uv sync --all-extras
```

## Build

```bash
maturin develop --uv
```

## Tests
```bash
cargo test
uv run pytest
```

# Development dependencies
- [UV](https://docs.astral.sh/uv/)


