We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e519dba commit 5580e21Copy full SHA for 5580e21
NEWS.rst
@@ -0,0 +1,2 @@
1
+0.1.0 (2017-08-08):
2
+ Initial release
setup.py
@@ -8,6 +8,14 @@
8
exec(line)
9
break
10
11
+LONG_DESCRIPTION = '\n'.join((
12
+ open('README.rst').read(),
13
+ 'Version History',
14
+ '---------------',
15
+ '',
16
+ open('NEWS.rst').read(),
17
+))
18
+
19
setup(
20
name='pa-ringbuffer',
21
version=__version__,
@@ -16,7 +24,7 @@
24
author='Matthias Geier',
25
author_email='[email protected]',
26
description="Python wrapper for PortAudio's ring buffer",
- long_description=open('README.rst').read(),
27
+ long_description=LONG_DESCRIPTION,
28
license='MIT',
29
keywords='sound audio PortAudio ringbuffer lock-free'.split(),
22
30
url='https://github.com/spatialaudio/python-pa-ringbuffer',
0 commit comments