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 +)