armada/setup.py
Alan Meadows 501d3d5ca2 Initial Armada Commit (#1)
* Initial commit of Armada framework

* python based .gitignore

* incorporate pull request feedback
2017-02-10 15:27:04 -08:00

16 lines
345 B
Python
Executable File

from setuptools import setup
setup(
name = 'armada',
version = '0.1.0',
description = 'Armada Helm Orchestrator',
packages = ['armada',
'hapi',
'hapi.chart',
'hapi.release',
'hapi.services',
'hapi.version'
],
scripts = ['scripts/armada']
)