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'],
+     )