commit c56e7cef4d43e09ad647c3f4215c73c92830d360 Author: Nick Mathewson nickm@torproject.org Date: Thu Sep 25 12:40:18 2014 -0400
Add a MANIFEST.in so that sdist will work --- .gitignore | 2 ++ MANIFEST.in | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+)
diff --git a/.gitignore b/.gitignore index e03ae16..f944487 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ tests.log .#*
/build +/dist +/MANIFEST
/test/valid/*.[ch] /test/ctest diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..e9ebebe --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,19 @@ +include README +include LICENSE +include test.sh + +include c/*.c +include include/*.h + +include examples/*.trunnel + +include doc/*.md +include doc/GRAMMAR + +include test/failing/*.trunnel +include test/valid/*.trunnel +include test/Makefile +include test/run_tests.sh +include test/tinytest/*.[ch] +incldue test/c/*.[ch] +