mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
18 lines
411 B
Python
18 lines
411 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from distutils.core import setup
|
|
import os
|
|
|
|
setup(
|
|
name='Stegano',
|
|
version='0.2',
|
|
author='Cédric Bonhomme',
|
|
author_email='kimble.mandel@gmail.com',
|
|
packages=['stegano'],
|
|
#scripts=[''],
|
|
url='http://bitbucket.org/cedricbonhomme/stegano',
|
|
platforms = ['Linux'],
|
|
license='COPYING',
|
|
description='A Python Steganography module.',
|
|
)
|