Updated setup.py for the new release

This commit is contained in:
Cédric Bonhomme 2015-10-06 07:53:01 +02:00
parent 28ba1e54cf
commit cb4c6ed71f
2 changed files with 18 additions and 9 deletions

View file

@ -19,6 +19,8 @@ requires = ['pillow']
with open('README.md', 'r') as f:
readme = f.read()
with open('CHANGELOG.md', 'r') as f:
changelog = f.read()
setup(
name='Stegano',
@ -30,7 +32,7 @@ setup(
scripts=['bin/slsb', 'bin/slsb-set', 'bin/steganalysis-parity'],
url='https://bitbucket.org/cedricbonhomme/stegano',
description='A Python Steganography module.',
long_description=readme,
long_description=readme + changelog,
platforms = ['Linux'],
license='GPLv3',
install_requires=requires,