diff --git a/fuel_agent/setup.cfg b/fuel_agent/setup.cfg index 589bfb5ad7..4f963f506f 100644 --- a/fuel_agent/setup.cfg +++ b/fuel_agent/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fuel-agent -version = 6.0.0 +version = 0.1.0 author = Mirantis author-email = fuel-dev@lists.launchpad.net summary = Fuel agent diff --git a/fuel_agent_ci/setup.cfg b/fuel_agent_ci/setup.cfg index 36eb386b61..92a9dec6eb 100644 --- a/fuel_agent_ci/setup.cfg +++ b/fuel_agent_ci/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fuel-agent-ci -version = 6.0.0 +version = 0.1.0 author = Mirantis author-email = fuel-dev@lists.launchpad.net summary = Fuel agent diff --git a/fuelclient/setup.py b/fuelclient/setup.py index 9b950e252d..8c1492a749 100644 --- a/fuelclient/setup.py +++ b/fuelclient/setup.py @@ -17,7 +17,7 @@ from setuptools import setup setup( name='fuelclient', - version='6.0.0', + version='0.2', description='Command line interface for Nailgun', long_description="""Command line interface for Nailgun""", author='Mirantis Inc.', diff --git a/fuelmenu/setup.py b/fuelmenu/setup.py index d67712f43c..4dddc09043 100644 --- a/fuelmenu/setup.py +++ b/fuelmenu/setup.py @@ -18,7 +18,7 @@ import setuptools setuptools.setup( name="fuelmenu", - version='6.0.0', + version='0.1', description="Console util for pre-configuration of Fuel server", author="Matthew Mosesohn", author_email="mmosesohn@mirantis.com", diff --git a/nailgun/requirements.txt b/nailgun/requirements.txt index 2fbc9b47c8..803cad23cc 100644 --- a/nailgun/requirements.txt +++ b/nailgun/requirements.txt @@ -5,6 +5,7 @@ MarkupSafe==0.18 Paste==1.7.5.1 PyYAML==3.10 SQLAlchemy>=0.9.4 +Shotgun==0.1.0 alembic>=0.6.2 amqplib==1.0.2 anyjson==0.3.3 diff --git a/nailgun/setup.py b/nailgun/setup.py index 9b436c7188..f2f56f73c2 100644 --- a/nailgun/setup.py +++ b/nailgun/setup.py @@ -18,8 +18,11 @@ import os.path from setuptools import find_packages from setuptools import setup +major_version = '0.1' +minor_version = '0' name = 'nailgun' -version = '6.0.0' + +version = "%s.%s" % (major_version, minor_version) def find_requires(): diff --git a/network_checker/setup.py b/network_checker/setup.py index 7ddfece604..a50fbc18da 100644 --- a/network_checker/setup.py +++ b/network_checker/setup.py @@ -17,7 +17,7 @@ import setuptools setuptools.setup( name="nailgun-net-check", - version='6.0.0', + version='0.2', author="Mirantis Inc", classifiers=[ "License :: OSI Approved :: Apache 2.0", diff --git a/shotgun/setup.py b/shotgun/setup.py index 1f4d2741a0..8e48e99234 100644 --- a/shotgun/setup.py +++ b/shotgun/setup.py @@ -22,8 +22,11 @@ requires = [ 'Fabric==1.7.0' ] -name = 'shotgun' -version = '6.0.0' +major_version = '0.1' +minor_version = '0' +name = 'Shotgun' + +version = "%s.%s" % (major_version, minor_version) def recursive_data_files(spec_data_files): diff --git a/tasklib/setup.py b/tasklib/setup.py index fa240a0505..b5aabb30a2 100644 --- a/tasklib/setup.py +++ b/tasklib/setup.py @@ -24,8 +24,11 @@ def requirements(): return requirements +major_version = '0.1' +minor_version = '0' name = 'tasklib' -version = '6.0.0' + +version = "%s.%s" % (major_version, minor_version) setuptools.setup(