1#!/usr/bin/env python 2 3# This file is dual licensed under the terms of the Apache License, Version 4# 2.0, and the BSD License. See the LICENSE file in the root of this repository 5# for complete details. 6 7from __future__ import absolute_import, division, print_function 8 9import os 10 11from setuptools import find_packages, setup 12 13 14base_dir = os.path.dirname(__file__) 15 16about = {} 17with open(os.path.join(base_dir, "cryptography_vectors", "__about__.py")) as f: 18 exec (f.read(), about) 19 20 21setup( 22 name=about["__title__"], 23 version=about["__version__"], 24 description=about["__summary__"], 25 license=about["__license__"], 26 url=about["__uri__"], 27 author=about["__author__"], 28 author_email=about["__email__"], 29 packages=find_packages(), 30 zip_safe=False, 31 include_package_data=True, 32) 33