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 25 description=about["__summary__"], 26 license=about["__license__"], 27 url=about["__uri__"], 28 author=about["__author__"], 29 author_email=about["__email__"], 30 31 packages=find_packages(), 32 zip_safe=False, 33 include_package_data=True 34) 35