Skip to content

Commit 5580e21

Browse files
committed
Add NEWS.rst
1 parent e519dba commit 5580e21

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

NEWS.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0.1.0 (2017-08-08):
2+
Initial release

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
exec(line)
99
break
1010

11+
LONG_DESCRIPTION = '\n'.join((
12+
open('README.rst').read(),
13+
'Version History',
14+
'---------------',
15+
'',
16+
open('NEWS.rst').read(),
17+
))
18+
1119
setup(
1220
name='pa-ringbuffer',
1321
version=__version__,
@@ -16,7 +24,7 @@
1624
author='Matthias Geier',
1725
author_email='[email protected]',
1826
description="Python wrapper for PortAudio's ring buffer",
19-
long_description=open('README.rst').read(),
27+
long_description=LONG_DESCRIPTION,
2028
license='MIT',
2129
keywords='sound audio PortAudio ringbuffer lock-free'.split(),
2230
url='https://github.com/spatialaudio/python-pa-ringbuffer',

0 commit comments

Comments
 (0)