Tower -> AWX Tooling Migration

* Switching version number scheme and mechanism
* Refactor development tooling towards 'awx' paths and names
* Purging packaging details from Makefile
This commit is contained in:
Matthew Jones
2017-07-18 11:16:18 -04:00
committed by Shane McDonald
parent cf967d244b
commit 3892e4e389
14 changed files with 150 additions and 597 deletions
+3 -1
View File
@@ -5,7 +5,9 @@ import os
import sys
import warnings
__version__ = '3.2.0'
from pkg_resources import get_distribution
__version__ = get_distribution('ansible-awx').version
__all__ = ['__version__']
+1 -1
View File
@@ -157,7 +157,7 @@ def get_awx_version():
from awx import __version__
try:
import pkg_resources
return pkg_resources.require('ansible_tower')[0].version
return pkg_resources.require('ansible-awx')[0].version
except:
return __version__