mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-14 01:38:31 +02:00
Added a missing dependency in the setup.py file.
This commit is contained in:
parent
76fd4a0cbb
commit
42571faaaa
3 changed files with 8 additions and 3 deletions
|
@ -1,6 +1,11 @@
|
||||||
Release History
|
Release History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
0.6.7 (2017-02-21)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* bugfix: added missing a dependency in the setup.py file.
|
||||||
|
|
||||||
0.6.6 (2017-02-20)
|
0.6.6 (2017-02-20)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ copyright = u'2012-2017, Cédric Bonhomme'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.6'
|
version = '0.6'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.6.6'
|
release = '0.6.7'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -27,7 +27,7 @@ scripts = [
|
||||||
'bin/steganalysis-statistics'
|
'bin/steganalysis-statistics'
|
||||||
]
|
]
|
||||||
|
|
||||||
requires = ['pillow', 'piexif']
|
requires = ['pillow', 'piexif', 'crayons']
|
||||||
|
|
||||||
with open('README.rst', 'r') as f:
|
with open('README.rst', 'r') as f:
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
@ -36,7 +36,7 @@ with open('CHANGELOG.rst', 'r') as f:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Stegano',
|
name='Stegano',
|
||||||
version='0.6.6',
|
version='0.6.7',
|
||||||
author='Cédric Bonhomme',
|
author='Cédric Bonhomme',
|
||||||
author_email='cedric@cedricbonhomme.org',
|
author_email='cedric@cedricbonhomme.org',
|
||||||
packages=packages,
|
packages=packages,
|
||||||
|
|
Loading…
Add table
Reference in a new issue