commit | 75d3b41d1a58150b2cc2e8cb5b2252ee78c6d201 | [log] [tgz] |
---|---|---|
author | Sapan Bhatia <gwsapan@gmail.com> | Wed Mar 29 21:10:29 2017 +0200 |
committer | Sapan Bhatia <gwsapan@gmail.com> | Wed Mar 29 21:10:29 2017 +0200 |
tree | f0fef668f8dc4c6ab35cbf5f46f8b89fb8d57af3 | |
parent | b1225873191a9d9b62c34d3e430b483572ca3bb3 [diff] |
Package based installer
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..31ba1bb --- /dev/null +++ b/setup.py
@@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='plyprotobuf', + version='1.0', + description='Protobuf Parsing Library that uses ply', + author='Dusan Klinec', + url='https://github.com/sb98052/plyprotobuf', + packages=['plyproto'], + )