mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-13 01:18:31 +02:00
PIL is required for Stéganô.
This commit is contained in:
parent
b4a1e1d0bb
commit
9c5250af01
1 changed files with 15 additions and 1 deletions
14
setup.py
14
setup.py
|
@ -7,6 +7,19 @@ import shutil
|
||||||
|
|
||||||
requires = ['PIL']
|
requires = ['PIL']
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
from setuptools import setup
|
||||||
|
kw = {'zip_safe': False,
|
||||||
|
'install_requires': requires
|
||||||
|
}
|
||||||
|
except ImportError:
|
||||||
|
from distutils.core import setup
|
||||||
|
kw = {'requires': requires}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Stegano',
|
name='Stegano',
|
||||||
version='0.4',
|
version='0.4',
|
||||||
|
@ -18,6 +31,7 @@ setup(
|
||||||
platforms = ['Linux'],
|
platforms = ['Linux'],
|
||||||
license='COPYING',
|
license='COPYING',
|
||||||
description='A Python Steganography module.',
|
description='A Python Steganography module.',
|
||||||
|
**kw
|
||||||
)
|
)
|
||||||
|
|
||||||
print "Installing binaries"
|
print "Installing binaries"
|
||||||
|
|
Loading…
Add table
Reference in a new issue