Skip to content

Commit

Permalink
setup.py: add changelog into the description + fix rst issue
Browse files Browse the repository at this point in the history
tito committed Jan 27, 2015
1 parent 22fb1d1 commit a9eb624
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Plyer
====
=====

Plyer is a platform-independent api to use features commonly found on various
platforms, notably mobile ones, in Python.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -21,12 +21,16 @@
'plyer.platforms.macosx.libs',
]

with open(join(curdir, "README.rst")) as fd:
readme = fd.read()
with open(join(curdir, "CHANGELOG.md")) as fd:
changelog = fd.read()

setup(
name='plyer',
version=plyer.__version__,
description='Platform-independant wrapper for platform-dependant APIs',
long_description=open(join(curdir, 'README.rst')).read(),
long_description=readme + "\n\n" + changelog,
author='Kivy team',
author_email='mat@kivy.org',
url='https://plyer.readthedocs.org/en/latest/',

0 comments on commit a9eb624

Please sign in to comment.