mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
Added setup.py
This commit is contained in:
parent
c656f3814d
commit
a02289a679
1 changed files with 18 additions and 0 deletions
18
setup.py
Normal file
18
setup.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/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.',
|
||||
)
|
Loading…
Add table
Reference in a new issue