1#!/usr/bin/env python
2
3from distutils.core import setup
4
5LONG_DESCRIPTION = '''A pure-Python implementation of the AES (FIPS-197)
6block-cipher algorithm and common modes of operation (CBC, CFB, CTR, ECB,
7OFB) with no dependencies beyond standard Python libraries. See README.md
8for API reference and details.'''
9
10setup(name = 'pyaes',
11      version = '1.6.1',
12      description = 'Pure-Python Implementation of the AES block-cipher and common modes of operation',
13      long_description = LONG_DESCRIPTION,
14      author = 'Richard Moore',
15      author_email = 'pyaes@ricmoo.com',
16      url = 'https://github.com/ricmoo/pyaes',
17      packages = ['pyaes'],
18      classifiers = [
19          'Topic :: Security :: Cryptography',
20          'License :: OSI Approved :: MIT License',
21      ],
22      license = "License :: OSI Approved :: MIT License",
23     )
24