[feature] restructure-clean-up-project
* updating file-structure * update docker file * update develop docs * update api and cmd
This commit is contained in:
22
setup.py
22
setup.py
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user