Everything in Markdown.

This commit is contained in:
Cédric Bonhomme 2019-10-27 22:03:36 +01:00
parent 3de95517e9
commit a9b9136141
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
8 changed files with 187 additions and 319 deletions

View file

@ -26,9 +26,9 @@ scripts = [
requires = ['pillow', 'piexif', 'crayons']
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
readme = f.read()
with codecs.open(os.path.join(here, 'CHANGELOG.rst'), encoding='utf-8') as f:
with codecs.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f:
changelog = f.read()
setup(
@ -41,7 +41,7 @@ setup(
scripts=scripts,
url='https://github.com/cedricbonhomme/Stegano',
description='A pure Python Steganography module.',
long_description=readme + '\n|\n\n' + changelog,
long_description=readme + '\n\n' + changelog,
platforms = ['Linux'],
license='GPLv3',
install_requires=requires,