[feature] restructure-clean-up-project

* updating file-structure
* update docker file
* update develop docs
* update api and cmd
This commit is contained in:
gardlt
2017-05-03 09:52:46 -05:00
parent 3abf8b93c6
commit 68d95bdcc5
41 changed files with 1209 additions and 298 deletions

View File

@@ -1,6 +1,6 @@
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
import setuptools
class Tox(TestCommand):
"""Runs Tox comands"""
@@ -17,15 +17,11 @@ class Tox(TestCommand):
sys.exit(errcode)
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']
)
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
pbr=True)