blob: 53ec82eb83a01a960af7ea407a33d47b1549ddab [file] [log] [blame]
Alex Gaynor5951f462014-11-16 09:08:42 -08001# This file is dual licensed under the terms of the Apache License, Version
2# 2.0, and the BSD License. See the LICENSE file in the root of this repository
3# for complete details.
Alex Stapletona39a3192014-03-14 20:03:12 +00004
5from __future__ import absolute_import, division, print_function
6
Alex Stapleton0bd20e22014-03-14 19:58:07 +00007import os
Alex Stapleton3888a842014-03-24 23:05:53 +00008
Alex Stapleton707b0082014-04-20 22:24:41 +01009from setuptools import find_packages, setup
Alex Stapleton0bd20e22014-03-14 19:58:07 +000010
11
12base_dir = os.path.dirname(__file__)
13
14about = {}
Alex Stapletona39a3192014-03-14 20:03:12 +000015with open(os.path.join(base_dir, "cryptography_vectors", "__about__.py")) as f:
Alex Stapleton0bd20e22014-03-14 19:58:07 +000016 exec(f.read(), about)
17
18
19setup(
20 name=about["__title__"],
21 version=about["__version__"],
22
23 description=about["__summary__"],
24 license=about["__license__"],
25 url=about["__uri__"],
26 author=about["__author__"],
27 author_email=about["__email__"],
28
29 packages=find_packages(),
30 zip_safe=False,
Alex Stapletona39a3192014-03-14 20:03:12 +000031 include_package_data=True
Alex Stapleton0bd20e22014-03-14 19:58:07 +000032)