From: zooko <zooko@zooko.com>
Date: Wed, 12 Sep 2007 18:18:03 +0000 (+0530)
Subject: zfec: make zfec.h and ez_setup.py be included in source distributions
X-Git-Url: https://git.rkrishnan.org/components/com_hotproperty/flags/class-simplejson.JSONDecoder.html?a=commitdiff_plain;h=3e3c3f6e4bc500f62451a16d96d63d4ae9d43a29;p=tahoe-lafs%2Fzfec.git

zfec: make zfec.h and ez_setup.py be included in source distributions

darcs-hash:c4c9d95a4ca46ce99e6091e919e588fb8e211daa
---

diff --git a/zfec/MANIFEST.in b/zfec/MANIFEST.in
new file mode 100644
index 0000000..5204129
--- /dev/null
+++ b/zfec/MANIFEST.in
@@ -0,0 +1,2 @@
+include ez_setup.py
+include zfec/fec.h
diff --git a/zfec/setup.py b/zfec/setup.py
index 755e086..fb7e5c4 100755
--- a/zfec/setup.py
+++ b/zfec/setup.py
@@ -105,7 +105,5 @@ setup(name='zfec',
       classifiers=trove_classifiers,
       entry_points = { 'console_scripts': [ 'zfec = zfec.cmdline_zfec:main', 'zunfec = zfec.cmdline_zunfec:main' ] },
       ext_modules=[Extension('_fec', ['zfec/fec.c', 'zfec/_fecmodule.c',], extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, undef_macros=undef_macros),],
-      include_package_data = True,
-      package_data = { '': ['*.h', 'ez_setup.py',] },
       test_suite="zfec.test",
       )