Metadata-Version: 2.1
Name: stackzilla
Version: 0.1.2
Summary: An ORM for your application stack.
Home-page: https://github.com/Stackzilla/stackzilla
Author: Zimventures, LLC
Author-email: rob@stackzilla.dev
License: GNU Affero General Public License v3
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click (==8.1.3)
Requires-Dist: colorama (==0.4.5)
Requires-Dist: cryptography (==38.0.1)
Requires-Dist: parallel-ssh (==2.12.0)
Provides-Extra: dev
Requires-Dist: invoke (==1.7.1) ; extra == 'dev'
Requires-Dist: wheel ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage (==6.5.0) ; extra == 'test'
Requires-Dist: invoke (==1.7.1) ; extra == 'test'
Requires-Dist: isort (==5.10.1) ; extra == 'test'
Requires-Dist: mypy (==0.971) ; extra == 'test'
Requires-Dist: mypy-extensions (==0.4.3) ; extra == 'test'
Requires-Dist: pydocstyle (==6.1.1) ; extra == 'test'
Requires-Dist: pyflakes (==2.5.0) ; extra == 'test'
Requires-Dist: pylint ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

# Stackzilla

<p style="text-align:center">
    <img src="https://github.com/Stackzilla/stackzilla/blob/main/docs/assets/images/zilla_and_blocks.png?raw=true"  alt="stackzilla" width="500"/>
</p>

[![codecov](https://codecov.io/gh/Stackzilla/stackzilla/branch/main/graph/badge.svg?token=SJQBB59GJ7)](https://codecov.io/gh/Stackzilla/stackzilla)
[![unit-test](https://github.com/Stackzilla/stackzilla/actions/workflows/branch-push-unit-test.yml/badge.svg)](https://github.com/Stackzilla/stackzilla/actions/workflows/branch-push-unit-test.yml)
[![Python 3.7 | 3.8 | 3.9 | 3.10](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10-blue)](https://pypi.org/project/stackzilla/)
[![pyPI](https://img.shields.io/pypi/v/stackzilla)](https://pypi.org/project/stackzilla/)

Stackzilla is a Python ORM for managing application infrastructure and software. Stackzilla's object-oriented design allows for complete customization by the developer, if that level of customization is needed. For simpler deployments, Stackzilla offers an incredibly easy interface for Python developers to work with.

# Installation
Install and update using [pip](https://pip.pypa.io/en/stable/getting-started/).

```bash
pip install -U stackzilla
```

View the Stackzilla PyPI package [here](https://pypi.org/project/stackzilla/).

# Usage
## A simple blueprint
TBD: Pending the first provider being published!

## Provisioning
```bash
stackzilla --namespace hello_blueprint init
stackzilla --namespace hello_blueprint blueprint apply --path ./myblueprint/
... (show output)
stackzilla --namespace hello_blueprint blueprint delete
```

# Have a question?
All support requests are handled through [GitHub Discussions](https://github.com/Stackzilla/stackzilla/discussions). Please only open a [GitHub issue](https://github.com/Stackzilla/stackzilla/issues) if you've found a bug, or have a feature request.

# Contributing
To get started with contributing to the Stackzilla project, visit the developer documentation. Thank you for your interest!

# License
Stackzilla is licensed under the GNU Affero General Public License v3.0 license See [LICENSE](https://github.com/Stackzilla/stackzilla/blob/main/LICENSE) for more information.
