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