Metadata-Version: 2.0
Name: pyhelm
Version: 0.0.1.dev39
Summary: Python bindings for Helm: Kubernetes package manager
Home-page: http://docs.openstack.org/developer/pyhelm
Author: OpenStack
Author-email: openstack-dev@lists.openstack.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: PyYAML (==3.12)
Requires-Dist: grpcio (==1.1.3)
Requires-Dist: grpcio-tools (==1.1.3)
Requires-Dist: protobuf (==3.2.0)
Requires-Dist: pygit2 (>=0.24.2)
Requires-Dist: requests (==2.14.2)
Requires-Dist: supermutes (==0.2.5)

======
PyHelm
======

Python bindings for the Helm package manager

Helm gRPC
---------

The helm gRPC libraries are located in the hapi directory.  They were generated with the grpc_tools.protoc utility against Helm 2.1.3.  Should you wish to re-generate them you can easily do so::

    git clone https://github.com/kubernetes/helm ./helm
    python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. _proto/hapi/chart/*
    python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. _proto/hapi/services/*
    python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. _proto/hapi/release/*
    python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. _proto/hapi/version/*
```



