New command line interface for the steganalysis by statistics.

This commit is contained in:
Cédric Bonhomme 2016-08-26 08:28:06 +02:00
parent 22a260f5b4
commit cef74dd57e
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
3 changed files with 55 additions and 16 deletions

View file

@ -19,6 +19,13 @@ packages = [
'stegano.steganalysis'
]
scripts = [
'bin/lsb',
'bin/lsb-set',
'bin/steganalysis-parity',
'bin/steganalysis-statistics'
]
requires = ['pillow', 'piexif']
with open('README.rst', 'r') as f:
@ -33,7 +40,7 @@ setup(
author_email='cedric@cedricbonhomme.org',
packages=packages,
include_package_data=True,
scripts=['bin/lsb', 'bin/lsb-set', 'bin/steganalysis-parity'],
scripts=scripts,
url='https://github.com/cedricbonhomme/Stegano',
description='A Python Steganography module.',
long_description=readme + '\n\n' + changelog,