blob: f27ba856b20f2f77c9df7df76257b00d0ef02989 [file] [log] [blame]
Donald Stufft5f12a1b2013-08-11 16:37:43 -04001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
10# implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
Alex Gaynorc37feed2014-03-08 08:32:56 -080013
14from __future__ import absolute_import, division, print_function
15
Donald Stufft5f12a1b2013-08-11 16:37:43 -040016from cryptography.__about__ import (
Paul Kehrerafc1ccd2014-03-19 11:49:32 -040017 __author__, __copyright__, __email__, __license__, __summary__, __title__,
18 __uri__, __version__
Donald Stufft5f12a1b2013-08-11 16:37:43 -040019)
20
21
22__all__ = [
23 "__title__", "__summary__", "__uri__", "__version__", "__author__",
24 "__email__", "__license__", "__copyright__",
25]