Metadata-Version: 2.1
Name: atomkraft
Version: 0.0.3
Summary: Testing for Cosmos Blockchains
Home-page: https://github.com/informalsystems/atomkraft
License: Apache-2.0
Keywords: cosmos,blockchain,testing,testnet
Author: Andrey Kuprianov
Author-email: andrey@informal.systems
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Testing
Requires-Dist: GitPython (>=3.1.27,<4.0.0)
Requires-Dist: bip-utils (>=2.3.0,<3.0.0)
Requires-Dist: case-converter (>=1.1.0,<2.0.0)
Requires-Dist: copier (>=6.1.0,<7.0.0)
Requires-Dist: hdwallet (>=2.1.1,<3.0.0)
Requires-Dist: jsonrpcclient (>=4.0.2,<5.0.0)
Requires-Dist: modelator (>=0.5.1,<0.6.0)
Requires-Dist: munch (>=2.5.0,<3.0.0)
Requires-Dist: numpy (>=1.22.4,<2.0.0)
Requires-Dist: pytest (>=7.1.2,<8.0.0)
Requires-Dist: tabulate (>=0.8.9,<0.9.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Requires-Dist: tomlkit (>=0.11.1,<0.12.0)
Requires-Dist: typer[all] (>=0.6.1,<0.7.0)
Requires-Dist: websockets (>=10.3,<11.0)
Project-URL: Repository, https://github.com/informalsystems/atomkraft
Description-Content-Type: text/markdown

# atomkraft

Testing for Cosmos Blockchains

### Using `pip` (inside a system or virtual env)

```
pip install atomkraft
atomkraft --help
# or
python -m atomkraft --help
```

### Using `poetry` (inside a project)

```
poetry add atomkraft
poerty run atomkraft --help
# or
poetry run python -m atomkraft --help
```

### Code Quality

```
pip install black pylama[all]
black . --check
pylama -l pyflakes,pycodestyle,isort
```

