Skip to content
This repository has been archived by the owner on Aug 10, 2019. It is now read-only.

Commit

Permalink
Change author info.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Mar 5, 2012
1 parent 3f2f437 commit cc3737e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion SimpleAES/__init__.py
Expand Up @@ -6,8 +6,11 @@
from Crypto.Cipher import AES
from .version import VERSION

__author__ = 'Vincent Driessen <me@nvie.com>'
__title__ = 'SimpleAES'
__version__ = VERSION
__author__ = 'Vincent Driessen'
__license__ = 'BSD'
__copyright__ = 'Copyright 2012 Vincent Driessen'


def _random_noise(len):
Expand Down
3 changes: 1 addition & 2 deletions setup.py
@@ -1,7 +1,6 @@
"""
SimpleAES: Encryption and decryption for mere mortals.
"""
import sys
import os
from setuptools import setup

Expand All @@ -21,7 +20,7 @@ def get_version():
url='https://github.com/nvie/SimpleAES',
license='BSD',
author='Vincent Driessen',
author_email='vincent@3rdcloud.com',
author_email='me@nvie.com',
description='SimpleAES: encryption and decryption for mere mortals.',
long_description=__doc__,
packages=['SimpleAES'],
Expand Down

0 comments on commit cc3737e

Please sign in to comment.