Alex Stapleton | 0bd20e2 | 2014-03-14 19:58:07 +0000 | [diff] [blame] | 1 | import os |
| 2 | from setuptools import setup, find_packages |
| 3 | |
| 4 | |
| 5 | base_dir = os.path.dirname(__file__) |
| 6 | |
| 7 | about = {} |
| 8 | with open(os.path.join(base_dir, "cryptography", "vectors", |
| 9 | "__about__.py")) as f: |
| 10 | exec(f.read(), about) |
| 11 | |
| 12 | |
| 13 | setup( |
| 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 | ) |