Fixed the manifest file for PiPy

This commit is contained in:
Kevin Greenan
2013-10-17 13:25:33 -07:00
parent 1138238721
commit caad8f4910
3 changed files with 79 additions and 1 deletions

74
MANIFEST Normal file
View File

@@ -0,0 +1,74 @@
# file GENERATED by distutils, do NOT edit
README
setup.py
c_eclib-0.2/AUTHORS
c_eclib-0.2/COPYING
c_eclib-0.2/ChangeLog
c_eclib-0.2/INSTALL
c_eclib-0.2/Makefile.am
c_eclib-0.2/Makefile.in
c_eclib-0.2/NEWS
c_eclib-0.2/README
c_eclib-0.2/aclocal.m4
c_eclib-0.2/config.guess
c_eclib-0.2/config.sub
c_eclib-0.2/configure
c_eclib-0.2/configure.ac
c_eclib-0.2/depcomp
c_eclib-0.2/install-sh
c_eclib-0.2/ltmain.sh
c_eclib-0.2/missing
c_eclib-0.2/alg_sig/Makefile.am
c_eclib-0.2/alg_sig/Makefile.in
c_eclib-0.2/alg_sig/alg_sig.c
c_eclib-0.2/alg_sig/alg_sig_test.c
c_eclib-0.2/include/alg_sig.h
c_eclib-0.2/include/config.h.in
c_eclib-0.2/include/xor_code.h
c_eclib-0.2/include/xor_hd_code_defs.h
c_eclib-0.2/m4/libtool.m4
c_eclib-0.2/m4/ltoptions.m4
c_eclib-0.2/m4/ltsugar.m4
c_eclib-0.2/m4/ltversion.m4
c_eclib-0.2/m4/lt~obsolete.m4
c_eclib-0.2/xor_codes/Makefile.am
c_eclib-0.2/xor_codes/Makefile.in
c_eclib-0.2/xor_codes/test_xor_hd_code.c
c_eclib-0.2/xor_codes/test_xor_hd_code.h
c_eclib-0.2/xor_codes/xor_code.c
c_eclib-0.2/xor_codes/xor_hd_code.c
c_eclib-0.2/xor_codes/tools/gen_failure_combs.py
c_eclib-0.2/xor_codes/tools/gen_goldilocks_codes.py
src/c/pyeclib_c/pyeclib_c.c
src/c/pyeclib_c/pyeclib_c.h
src/python/pyeclib/__init__.py
src/python/pyeclib/core.py
src/python/pyeclib/ec_iface.py
src/python/pyeclib/ec_test.py
src/python/test/pyeclib_test.py
test/ec_pyeclib_file_test.sh
test/run_tests.py
test/test_files/ames-msst06.pdf
test/test_files/bhatnagar-hotemnets08.pdf
test/test_files/greenan-dsn08.pdf
test/test_files/greenan-emsoft06.pdf
test/test_files/greenan-hotdep07.pdf
test/test_files/greenan-hotdep08.pdf
test/test_files/greenan-hotdep09.pdf
test/test_files/greenan-hotstorage10.pdf
test/test_files/greenan-mascots08.pdf
test/test_files/greenan-msst10.pdf
test/test_files/greenan-sisw05.pdf
test/test_files/greenan-storagess07.pdf
test/test_files/li-fast12.pdf
test/test_files/li-fast2012.pdf
test/test_files/plank-fast2013.pdf
test/test_files/portegys-pdpta03.pdf
test/test_files/storer-fast08.pdf
test/test_files/storer-pdsw08.pdf
test/test_files/storer-storagess06.pdf
test/test_files/storer-storagess08.pdf
test/test_files/storer-usenix07.pdf
tools/pyeclib_decode.py
tools/pyeclib_encode.py
tools/pyeclib_fragments_needed.py

4
MANIFEST.in Normal file
View File

@@ -0,0 +1,4 @@
recursive-include src *
recursive-include c_eclib-0.2 *
recursive-include test *
recursive-include tools *

View File

@@ -46,7 +46,7 @@ module = Extension('pyeclib_c',
sources = ['src/c/pyeclib_c/pyeclib_c.c'])
setup (name = 'PyECLib',
version = '0.1',
version = '0.1.2',
author = 'Kevin Greenan',
author_email = 'kmgreen2@gmail.com',
maintainer = 'Kevin Greenan and Tushar Gohad',