blob: 773fc4560674813f9ba88eafdc6114dce8b75013 [file] [log] [blame]
Alex Stapleton0bd20e22014-03-14 19:58:07 +00001import os
2from setuptools import setup, find_packages
3
4
5base_dir = os.path.dirname(__file__)
6
7about = {}
8with open(os.path.join(base_dir, "cryptography", "vectors",
9 "__about__.py")) as f:
10 exec(f.read(), about)
11
12
13setup(
14 name=about["__title__"],
15 version=about["__version__"],
16
17 description=about["__summary__"],
18 license=about["__license__"],
19 url=about["__uri__"],
20 author=about["__author__"],
21 author_email=about["__email__"],
22
23 packages=find_packages(),
24 zip_safe=False,
25 include_package_data=True,
26 namespace_packages=['cryptography'],
27)