Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-261-single-source-aria-version d689b9bf7 -> eaa5de448 (forced update)
ARIA-261 Single-source ARIA version Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/eaa5de44 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/eaa5de44 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/eaa5de44 Branch: refs/heads/ARIA-261-single-source-aria-version Commit: eaa5de4483b3576ac1746b3292923278cad064bf Parents: 0c98684 Author: Ran Ziv <[email protected]> Authored: Thu May 25 12:18:58 2017 +0300 Committer: Ran Ziv <[email protected]> Committed: Thu May 25 16:02:14 2017 +0300 ---------------------------------------------------------------------- MANIFEST.in | 2 ++ VERSION | 1 + aria/VERSION.py | 21 --------------------- aria/__init__.py | 5 +++-- aria/parser/reading/jinja.py | 2 +- setup.py | 15 ++++++++++----- 6 files changed, 17 insertions(+), 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/eaa5de44/MANIFEST.in ---------------------------------------------------------------------- diff --git a/MANIFEST.in b/MANIFEST.in index d934e18..6c79a3a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ include requirements.txt +include VERSION +include LICENSE recursive-include examples * http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/eaa5de44/VERSION ---------------------------------------------------------------------- diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..6c6aa7c --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.1.0 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/eaa5de44/aria/VERSION.py ---------------------------------------------------------------------- diff --git a/aria/VERSION.py b/aria/VERSION.py deleted file mode 100644 index 9ce332c..0000000 --- a/aria/VERSION.py +++ /dev/null @@ -1,21 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -""" -ARIA Version module: - * version: ARIA Package version -""" - -version = '0.1.0' # pylint: disable=C0103 http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/eaa5de44/aria/__init__.py ---------------------------------------------------------------------- diff --git a/aria/__init__.py b/aria/__init__.py index df75b1e..6a06705 100644 --- a/aria/__init__.py +++ b/aria/__init__.py @@ -17,9 +17,10 @@ ARIA top level package """ -import sys +import pkg_resources +__version__ = pkg_resources.get_distribution('aria').version -from .VERSION import version as __version__ +import sys from .orchestrator.decorators import workflow, operation from . import ( http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/eaa5de44/aria/parser/reading/jinja.py ---------------------------------------------------------------------- diff --git a/aria/parser/reading/jinja.py b/aria/parser/reading/jinja.py index 17bf49e..687317a 100644 --- a/aria/parser/reading/jinja.py +++ b/aria/parser/reading/jinja.py @@ -14,7 +14,7 @@ import os from jinja2 import Template -from ...VERSION import version +from ... import __version__ as version from ..loading import LiteralLocation, LiteralLoader from .reader import Reader from .exceptions import ReaderSyntaxError http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/eaa5de44/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index c0ad75b..9c0c511 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ from setuptools import setup, find_packages from setuptools.command.install import install from setuptools.command.develop import develop + _PACKAGE_NAME = 'aria' _PYTHON_SUPPORTED_VERSIONS = [(2, 6), (2, 7)] _EXTENSION_DIR = 'extensions' @@ -28,6 +29,7 @@ _EXTENSION_NAMES = [ 'aria_extension_tosca' ] + if (sys.version_info[0], sys.version_info[1]) not in _PYTHON_SUPPORTED_VERSIONS: raise NotImplementedError( '{0} Package support Python version 2.6 & 2.7 Only'.format( @@ -35,9 +37,8 @@ if (sys.version_info[0], sys.version_info[1]) not in _PYTHON_SUPPORTED_VERSIONS: root_dir = os.path.dirname(__file__) -version = '0.1.0' -execfile(os.path.join(root_dir, _PACKAGE_NAME, 'VERSION.py')) - +with open(os.path.join(root_dir, 'VERSION')) as version_file: + __version__ = version_file.read().strip() install_requires = [] extras_require = {} @@ -104,9 +105,9 @@ class DevelopCommand(develop): setup( name=_PACKAGE_NAME, - version=version, + version=__version__, description='ARIA', - license='Apache License Version 2.0', + license='Apache License 2.0', author='aria', author_email='[email protected]', url='http://ariatosca.org', @@ -119,6 +120,9 @@ setup( 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking', 'Topic :: System :: Systems Administration'], @@ -136,6 +140,7 @@ setup( 'profiles/aria-1.0/**' ] }, + platforms=['any'], zip_safe=False, install_requires=install_requires, extras_require=extras_require,
