blob: bf02e389fffe5af1b5fd97f46ea935f76214b0ee [file] [log] [blame]
Dominic Chen9604d9e2015-10-10 05:13:31 +00001#!/usr/bin/env python
2
Alex Gaynor5951f462014-11-16 09:08:42 -08003# 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.
Alex Stapletona39a3192014-03-14 20:03:12 +00006
7from __future__ import absolute_import, division, print_function
8
Alex Stapleton0bd20e22014-03-14 19:58:07 +00009import os
Alex Stapleton3888a842014-03-24 23:05:53 +000010
Alex Stapleton707b0082014-04-20 22:24:41 +010011from setuptools import find_packages, setup
Alex Stapleton0bd20e22014-03-14 19:58:07 +000012
13
14base_dir = os.path.dirname(__file__)
15
16about = {}
Alex Stapletona39a3192014-03-14 20:03:12 +000017with open(os.path.join(base_dir, "cryptography_vectors", "__about__.py")) as f:
Alex Stapleton0bd20e22014-03-14 19:58:07 +000018 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,
Alex Stapletona39a3192014-03-14 20:03:12 +000033 include_package_data=True
Alex Stapleton0bd20e22014-03-14 19:58:07 +000034)