diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..63a66f9 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ + #!/usr/bin/python +# -*- coding: utf-8 -*- + +from distutils.core import setup +import os + +setup( + name='Stegano', + version='0.2', + author='Cédric Bonhomme', + author_email='kimble.mandel@gmail.com', + packages=['stegano'], + #scripts=[''], + url='http://bitbucket.org/cedricbonhomme/stegano', + platforms = ['Linux'], + license='COPYING', + description='A Python Steganography module.', +)