Reorganization of all modules.

This commit is contained in:
Cédric Bonhomme 2016-05-19 21:32:15 +02:00
parent e0bed8ba52
commit 872a5546fc
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
23 changed files with 77 additions and 43 deletions

View file

@ -11,7 +11,12 @@ except ImportError:
from distutils.core import setup
packages = [
'stegano'
'stegano',
'stegano.red',
'stegano.exifHeader',
'stegano.lsb',
'stegano.lsbset',
'stegano.steganalysis'
]
requires = ['pillow', 'piexif']
@ -28,7 +33,7 @@ setup(
author_email='cedric@cedricbonhomme.org',
packages=packages,
include_package_data=True,
scripts=['bin/slsb', 'bin/slsb-set', 'bin/steganalysis-parity'],
scripts=['bin/lsb', 'bin/lsb-set', 'bin/steganalysis-parity'],
url='https://github.com/cedricbonhomme/Stegano',
description='A Python Steganography module.',
long_description=readme + '\n\n' + changelog,