mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-06-28 11:16:14 +02:00
Added binary slsb-set. Updated setup.py.
This commit is contained in:
parent
8c51a96cf9
commit
a0aec974c5
4 changed files with 103 additions and 62 deletions
10
setup.py
10
setup.py
|
@ -3,10 +3,11 @@
|
|||
|
||||
from distutils.core import setup
|
||||
import os
|
||||
import shutil
|
||||
|
||||
setup(
|
||||
name='Stegano',
|
||||
version='0.3',
|
||||
version='0.4',
|
||||
author='Cédric Bonhomme',
|
||||
author_email='kimble.mandel@gmail.com',
|
||||
packages=['stegano'],
|
||||
|
@ -16,3 +17,10 @@ setup(
|
|||
license='COPYING',
|
||||
description='A Python Steganography module.',
|
||||
)
|
||||
|
||||
print "Installing binaries"
|
||||
shutil.copy2("./bin/slsb-set", "/bin/slsb-set")
|
||||
shutil.copymode("./bin/slsb-set", "/bin/slsb-set")
|
||||
|
||||
shutil.copy2("./bin/slsb", "/bin/slsb")
|
||||
shutil.copymode("./bin/slsb", "/bin/slsb")
|
Loading…
Add table
Add a link
Reference in a new issue