Skip to content

Commit

Permalink
Change version number to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
XericZephyr committed Sep 29, 2015
1 parent ab0d480 commit 3960c23
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
)
)

0 comments on commit 3960c23

Please # to comment.