From bb53823c783f0a551e3a675052057c4f5170689b Mon Sep 17 00:00:00 2001 From: Jakub Matys Date: Sat, 4 Oct 2014 14:16:39 +0200 Subject: [PATCH] added setup.py --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f4ea448 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +import distutils.core + +distutils.core.setup( + name = "txMsgpack", + version = "1.0", + packages = ["txmsgpack"], + package_dir = {"": "lib/python"}, + author = "Donal McMullan", + author_email = "donal.mcmullan@gmail.com", + url = "https://github.com/donalm/txMsgpack", + license = "MIT", + description = "txMsgpack is a Twisted Protocol to support msgpack-rpc.", +)