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.", +)