summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/MANIFEST8
-rw-r--r--python/setup.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/python/MANIFEST b/python/MANIFEST
new file mode 100644
index 0000000..c7dd3a3
--- /dev/null
+++ b/python/MANIFEST
@@ -0,0 +1,8 @@
+msgpack.c
+setup.py
+pack.h
+unpack.h
+msgpack/pack_define.h
+msgpack/pack_template.h
+msgpack/unpack_define.h
+msgpack/unpack_template.h
diff --git a/python/setup.py b/python/setup.py
index 8bfdf82..e5651a0 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -24,6 +24,6 @@ setup(name='msgpack',
author_email='songofacandy@gmail.com',
version=version,
ext_modules=[msgpack_mod],
- description='The MessagePack serializer/desirializer.',
+ description=desc,
long_description=long_desc,
)