Metadata-Version: 2.3
Name: smartpy-tezos
Version: 0.24.0
Summary: A comprehensive solution for developing, testing, and deploying smart contracts on the Tezos blockchain.
Author: The SmartPy Team
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: requests (>=2.25.1,<3.0.0)
Description-Content-Type: text/markdown

# SmartPy - Smart Contracts on Tezos

A comprehensive solution for developing, testing, and deploying smart contracts
on the Tezos blockchain. All in familiar Python syntax.

## Getting Started

### Prerequisites

- Python 3.10 or later.
- Pip (Python package installer)

### Installation

SmartPy is available on the Python Package Index (PyPi). To install it, just run
the following command in your terminal:

```sh
pip install smartpy-tezos
```

If you're using a system with both Python 2 and Python 3, you might need to use
pip3 instead:

```sh
pip3 install smartpy-tezos
```

If you prefer to use a virtualenv:

```shell-vue
python -m venv smartpy-env
```

which should be activated before installation of SmartPy:

```shell-vue
source smartpy-env/bin/activate
```

now install with pip:

```shell-vue
pip install smartpy-tezos
```

For alpha releases, remember to explicitly set the version you want:

```shell-vue
pip install smartpy-tezos==<VERSION>
```

## Documentation

You can find more detailed documentation and tutorials at the official SmartPy
documentation site: https://smartpy.io/docs

## License

This project is licensed under the MIT License - see the
[LICENSE](https://gitlab.com/smartpy.io/smartpy/-/blob/main/LICENSE) file for
details.

