Packaged for pypi
diff --git a/setup.py b/setup.py
index 87572c4..2a0a2fe 100644
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,31 @@
#!/usr/bin/env python
-from distutils.core import setup
+"""plyxproto xproto parser
+
+See:
+https://github.com/sb98052/plyprotobuf
+https://github.com/opencord/xos
+"""
+
+from setuptools import setup
setup(name='plyxproto',
- version='2.0',
- description='Protobuf Parsing Library that uses ply and supports XOS extensions',
- author='Dusan Klinec, Sapan Bhatia',
+ version='2.1.0',
+ description='xproto parser and processor',
+ author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions)',
+ author_email='sapan@opennetworking.org',
url='https://github.com/sb98052/plyprotobuf',
+ license='Apache Software License',
+
+ classifiers=[
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'Topic :: Software Development :: Build Tools',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.7'
+ ],
+ keywords='xproto protobuf xos parser',
packages=['plyxproto'],
install_requires=['ply']
)