Added setup.py

This commit is contained in:
cedricbonhomme 2011-03-30 21:42:16 +02:00
parent c656f3814d
commit a02289a679

18
setup.py Normal file
View file

@ -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.',
)