Skip to content

Commit 84a8b8e

Browse files
committed
Updated version to 0.5.2 and added long_description
1 parent 3d8a7b2 commit 84a8b8e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pythonforandroid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__version__ = '0.5'
2+
__version__ = '0.5.2'

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,13 @@ def recursively_include(results, directory, patterns):
5353
recursively_include(package_data, 'pythonforandroid',
5454
['liblink', 'biglink', 'liblink.sh'])
5555

56+
with open(join(dirname(__file__), 'README.rst')) as fileh:
57+
long_description = fileh.read()
58+
5659
setup(name='python-for-android',
57-
version='0.5',
60+
version='0.5.2',
5861
description='Android APK packager for Python scripts and apps',
62+
long_description=long_description,
5963
author='The Kivy team',
6064
author_email='kivy-dev@googlegroups.com',
6165
url='https://github.com/kivy/python-for-android',

0 commit comments

Comments
 (0)