From 3960c23e619af70077005380eb921700573d7b26 Mon Sep 17 00:00:00 2001 From: Zheng Xu Date: Tue, 29 Sep 2015 13:22:28 -0500 Subject: [PATCH] Change version number to 0.2.5 --- setup.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index 283c618..70b64e4 100644 --- a/setup.py +++ b/setup.py @@ -3,23 +3,23 @@ from setuptools import setup, find_packages setup( - name = "ProtoText", - version = "0.1", - packages = find_packages(exclude=['tests']), + name="ProtoText", + version="0.2.5", + packages=find_packages(exclude=['tests']), # Project uses reStructuredText, so ensure that the docutils get # installed or upgraded on the target machine - install_requires = ['protobuf>=2.6'], + install_requires=['protobuf>=2.6'], - package_data = {}, + package_data={}, # metadata for upload to PyPI - author = "Zheng Xu", - author_email = "xuzheng1111@gmail.com", - description = "ProtoText is a powerful python dict-like wrapper class to process google protobuf objects.", - license = "MIT", - keywords = "protobuf, dict", - url = "https://github.com/XericZephyr/prototext", # project home page, if any + author="Zheng Xu", + author_email="xuzheng1111@gmail.com", + description="ProtoText is a powerful python dict-like wrapper class to process google protobuf objects.", + license="MIT", + keywords="protobuf, dict", + url="https://github.com/XericZephyr/prototext", # project home page, if any # could also include long_description, download_url, classifiers, etc. -) \ No newline at end of file +)