blob: 66841def85200251a12db046e8e96afec2bbd223 [file] [log] [blame]
Alex Stapletona39a3192014-03-14 20:03:12 +00001# 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.
13
14from __future__ import absolute_import, division, print_function
15
Alex Stapleton0bd20e22014-03-14 19:58:07 +000016import os
Alex Stapleton3888a842014-03-24 23:05:53 +000017
Alex Stapleton707b0082014-04-20 22:24:41 +010018from setuptools import find_packages, setup
Alex Stapleton0bd20e22014-03-14 19:58:07 +000019
20
21base_dir = os.path.dirname(__file__)
22
23about = {}
Alex Stapletona39a3192014-03-14 20:03:12 +000024with open(os.path.join(base_dir, "cryptography_vectors", "__about__.py")) as f:
Alex Stapleton0bd20e22014-03-14 19:58:07 +000025 exec(f.read(), about)
26
27
28setup(
29 name=about["__title__"],
30 version=about["__version__"],
31
32 description=about["__summary__"],
33 license=about["__license__"],
34 url=about["__uri__"],
35 author=about["__author__"],
36 author_email=about["__email__"],
37
38 packages=find_packages(),
39 zip_safe=False,
Alex Stapletona39a3192014-03-14 20:03:12 +000040 include_package_data=True
Alex Stapleton0bd20e22014-03-14 19:58:07 +000041)