Sapan Bhatia | 75d3b41 | 2017-03-29 21:10:29 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python |
2 | |||||
3 | from distutils.core import setup | ||||
4 | |||||
5 | setup(name='plyprotobuf', | ||||
6 | version='1.0', | ||||
7 | description='Protobuf Parsing Library that uses ply', | ||||
8 | author='Dusan Klinec', | ||||
9 | url='https://github.com/sb98052/plyprotobuf', | ||||
10 | packages=['plyproto'], | ||||
Sapan Bhatia | b7acc8c | 2017-03-29 21:17:25 +0200 | [diff] [blame] | 11 | install_requires=['ply'] |
Sapan Bhatia | 75d3b41 | 2017-03-29 21:10:29 +0200 | [diff] [blame] | 12 | ) |