84648488
Chunk
reverted.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /usr/bin/env python
# $Id: setup.py 1494 2009-04-30 13:10:41Z css1hs $
from distutils.core import setup, Extension
setup(name = 'JstegPackage',
version = '0.1',
description = 'jsteg mangler',
ext_modules = [
Extension ( "libmjsteg",
sources=["jpegobject.c","jpeg.c"],
include_dirs = ["/usr/include/python2.7",'/usr/local/include'],
library_dirs = ['/usr/local/lib'],
libraries = ['jpeg'],
),
],
package_dir = {'mjsetg': ''},
py_modules=['mjsetg'],
)
# Note that the include_dirs given here are due to a bug in Ubuntu.
# -> Check it for your system.
|