switched from distutils to setuptools
[python-cryptoplus.git] / setup.py
blob64e91bea5d8cb11af62dc07ac1be9faae12d61db
1 #!/usr/bin/env python
3 from setuptools import setup
5 setup(name='CryptoPlus',
6 version='1.0',
7 description='PyCrypto Cipher extension',
8 author='Christophe Oosterlynck',
9 author_email='tiftof@gmail.com',
10 url='http://www.python.org/sigs/distutils-sig/',
11 packages = ["CryptoPlus","CryptoPlus.Cipher", "CryptoPlus.Util"],
12 install_requires = ['pycrypto'],
13 package_dir = {'CryptoPlus': 'src'}