Hash API: unified -> default value for data in new() is None instead of ""
[python-cryptoplus.git] / setup.py
blobf80a2bdb2962f0e5e9ab906660e7a31fbc8d7fd1
1 #!/usr/bin/env python
3 from setuptools import setup, find_packages
5 setup(name='CryptoPlus',
6 version='1.0',
7 description='PyCrypto Cipher extension',
8 author='Christophe Oosterlynck',
9 author_email='tiftof@gmail.com',
10 packages = find_packages('src'),
11 install_requires = ['pycrypto'],
12 package_dir={'': 'src'}