forked from wnyc/py-zopfli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.0.3: Hah, I forgot to include the header files. MANIFEST.in, I love…
… you
- Loading branch information
Adam DePrince
committed
Dec 13, 2013
1 parent
9e0d614
commit 8d46947
Showing
2 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
zopfli/blocksplitter.h | ||
zopfli/cache.h | ||
zopfli/deflate.h | ||
zopfli/gzip_container.h | ||
zopfli/hash.h | ||
zopfli/katajainen.h | ||
zopfli/lz77.h | ||
zopfli/squeeze.h | ||
zopfli/tree.h | ||
zopfli/util.h | ||
zopfli/zlib_container.h | ||
This comment has been minimized.
Sorry, something went wrong. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
setup( | ||
name='zopfli', | ||
version='0.0.2', | ||
version='0.0.3', | ||
author='Adam DePrince', | ||
author_email='[email protected]', | ||
description='Zopfli module for python', | ||
|
@@ -23,18 +23,18 @@ | |
ext_modules = [Extension('zopfli.zopfli', | ||
opts = "-O2 -W -Wall -Wextra -ansi -pedantic -lm", | ||
sources = [ | ||
'zopfli/blocksplitter.c', | ||
'zopfli/cache.c', | ||
'zopfli/deflate.c', | ||
'zopfli/gzip_container.c', | ||
'zopfli/squeeze.c', | ||
'zopfli/hash.c', | ||
'zopfli/katajainen.c', | ||
'zopfli/lz77.c', | ||
'zopfli/tree.c', | ||
'zopfli/util.c', | ||
'zopfli/zlib_container.c', | ||
'zopfli/zopflimodule.c', | ||
'zopfli/blocksplitter.c', | ||
'zopfli/cache.c', | ||
'zopfli/deflate.c', | ||
'zopfli/gzip_container.c', | ||
'zopfli/squeeze.c', | ||
'zopfli/hash.c', | ||
'zopfli/katajainen.c', | ||
'zopfli/lz77.c', | ||
'zopfli/tree.c', | ||
'zopfli/util.c', | ||
'zopfli/zlib_container.c', | ||
'zopfli/zopflimodule.c', | ||
], | ||
libraries = ['c'] | ||
)], | ||
|
Why not just do: