26 lines
1011 B
Python
26 lines
1011 B
Python
"""
|
|
_version.py
|
|
|
|
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
|
|
|
|
This program is licensed to you under the Apache License Version 2.0,
|
|
and you may not use this file except in compliance with the Apache License
|
|
Version 2.0. You may obtain a copy of the Apache License Version 2.0 at
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the Apache License Version 2.0 is distributed on
|
|
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
|
express or implied. See the Apache License Version 2.0 for the specific
|
|
language governing permissions and limitations there under.
|
|
|
|
Authors: Anuj More, Alex Dean, Fred Blundun
|
|
Copyright: Copyright (c) 2013-2016 Snowplow Analytics Ltd
|
|
License: Apache License Version 2.0
|
|
"""
|
|
|
|
|
|
__version_info__ = (0, 0, 2)
|
|
__version__ = ".".join(str(x) for x in __version_info__)
|
|
__build_version__ = __version__ + ''
|