Skip to content

Commit 3960c23

Browse files
committed
Change version number to 0.2.5
1 parent ab0d480 commit 3960c23

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

setup.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
from setuptools import setup, find_packages
44

55
setup(
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

Comments
 (0)