~ubuntu-branches/ubuntu/vivid/lazr.restfulclient/vivid-proposed

« back to all changes in this revision

Viewing changes to src/lazr/authentication/__init__.py

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov
  • Date: 2014-12-06 01:04:46 UTC
  • mfrom: (1.3.4)
  • Revision ID: package-import@ubuntu.com-20141206010446-axq9v8zp6kkfts8v
Tags: 0.13.4-0ubuntu1
Upload to vivid, because my subkey is not getting accepted by
ftp-master.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2009 Canonical Ltd.  All rights reserved.
 
2
#
 
3
# This file is part of lazr.authentication
 
4
#
 
5
# lazr.authentication is free software: you can redistribute it and/or
 
6
# modify it under the terms of the GNU Lesser General Public License
 
7
# as published by the Free Software Foundation, version 3 of the
 
8
# License.
 
9
#
 
10
# lazr.authentication is distributed in the hope that it will be
 
11
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
 
12
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
# Lesser General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU Lesser General Public License
 
16
# along with lazr.authentication.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
"""Code to handle the server side of HTTP authentication."""
 
19
 
 
20
import pkg_resources
 
21
__version__ = pkg_resources.resource_string(
 
22
    "lazr.authentication", "version.txt").strip()