33from setuptools import setup , find_packages
44
55setup (
6- name = "ProtoText" ,
7- version = "0.1 " ,
8- packages = find_packages (exclude = ['tests' ]),
6+ name = "ProtoText" ,
7+ version = "0.2.5 " ,
8+ packages = find_packages (exclude = ['tests' ]),
99
1010 # Project uses reStructuredText, so ensure that the docutils get
1111 # installed or upgraded on the target machine
12- install_requires = ['protobuf>=2.6' ],
12+ install_requires = ['protobuf>=2.6' ],
1313
14- package_data = {},
14+ package_data = {},
1515
1616 # metadata for upload to PyPI
17- author = "Zheng Xu" ,
18- author_email = "xuzheng1111@gmail.com" ,
19- description = "ProtoText is a powerful python dict-like wrapper class to process google protobuf objects." ,
20- license = "MIT" ,
21- keywords = "protobuf, dict" ,
22- url = "https://github.com/XericZephyr/prototext" , # project home page, if any
17+ author = "Zheng Xu" ,
18+ author_email = "xuzheng1111@gmail.com" ,
19+ description = "ProtoText is a powerful python dict-like wrapper class to process google protobuf objects." ,
20+ license = "MIT" ,
21+ keywords = "protobuf, dict" ,
22+ url = "https://github.com/XericZephyr/prototext" , # project home page, if any
2323
2424 # could also include long_description, download_url, classifiers, etc.
25- )
25+ )
0 commit comments