Metadata-Version: 2.1
Name: jenesis
Version: 0.3.1
Summary: Command line tool for rapid CosmWasm-based smart contract development
License: Apache
Author: Ed FitzGerald
Author-email: edward.fitzgerald@fetch.ai
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: blessings (>=1.7,<2.0)
Requires-Dist: cosmpy (>=0.5.1,<0.6.0)
Requires-Dist: docker (>=5.0.3,<6.1.0)
Requires-Dist: jsonschema (>=4.15.0,<5.0.0)
Requires-Dist: keyring (>=23.9.0,<24.0.0)
Requires-Dist: mkdocs (>=1.3.1,<2.0.0)
Requires-Dist: mkdocs-material (>=8.3.9,<9.0.0)
Requires-Dist: ptpython (>=3.0.20,<4.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Requires-Dist: tqdm (>=4.64.0,<5.0.0)
Description-Content-Type: text/markdown

Jenesis is a command line tool for rapid contract and service development for the Fetch.ai blockchain ecosystem and other CosmWasm-enabled blockchains.

# Installation

Install jenesis for Python 3.7 or newer via PyPI:

```
pip install jenesis
```

# Getting started

## Create a new project

```
jenesis new my_project
```

## Initialize jenesis in an existing project directory

```
jenesis init
```

## Compile contracts


```
jenesis compile
```

