Renamed package to plyxproto to distinguish it from the original
plyproto package.
diff --git a/plyproto/__init__.py b/plyxproto/__init__.py
similarity index 100%
rename from plyproto/__init__.py
rename to plyxproto/__init__.py
diff --git a/plyproto/model.py b/plyxproto/model.py
similarity index 100%
rename from plyproto/model.py
rename to plyxproto/model.py
diff --git a/plyproto/parser.py b/plyxproto/parser.py
similarity index 100%
rename from plyproto/parser.py
rename to plyxproto/parser.py
diff --git a/setup.py b/setup.py
index 7cb8ee1..3de1a9a 100644
--- a/setup.py
+++ b/setup.py
@@ -2,11 +2,11 @@
 
 from distutils.core import setup
 
-setup(name='plyprotobuf',
-      version='1.2',
-      description='Protobuf Parsing Library that uses ply',
-      author='Dusan Klinec',
+setup(name='plyxproto',
+      version='1.3',
+      description='Protobuf Parsing Library that uses ply and supports XOS extensions',
+      author='Dusan Klinec, Sapan Bhatia',
       url='https://github.com/sb98052/plyprotobuf',
-      packages=['plyproto'],
+      packages=['plyxproto'],
       install_requires=['ply']
      )