~ubuntuone-pqm-team/python-oops/stable

« back to all changes in this revision

Viewing changes to oops/__init__.py

  • Committer: Robert Collins
  • Date: 2011-08-10 05:06:50 UTC
  • Revision ID: robertc@robertcollins.net-20110810050650-umw1rxuwimir8y8r
Initial project skeleton.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (c) 2011, Canonical Ltd
 
3
#
 
4
# This program is free software: you can redistribute it and/or modify
 
5
# it under the terms of the GNU Affero General Public License as published by
 
6
# the Free Software Foundation, either version 3 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU Affero General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU Affero General Public License
 
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
# same format as sys.version_info: "A tuple containing the five components of
 
18
# the version number: major, minor, micro, releaselevel, and serial. All
 
19
# values except releaselevel are integers; the release level is 'alpha',
 
20
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
 
21
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
 
22
# releaselevel of 'dev' for unreleased under-development code.
 
23
#
 
24
# If the releaselevel is 'alpha' then the major/minor/micro components are not
 
25
# established at this point, and setup.py will use a version of next-$(revno).
 
26
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
 
27
# Otherwise it is major.minor.micro~$(revno).
 
28
__version__ = (0, 0, 1, 'beta', 0)
 
29
 
 
30
__all__ = [
 
31
    ]
 
32