File tree Expand file tree Collapse file tree 4 files changed +9
-12
lines changed
Expand file tree Collapse file tree 4 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 55 - " 3.4"
66 - " 3.5"
77 - " 3.6"
8- - " 3.7"
9- - nightly
108
119before_install :
1210 - sudo apt-get -qq update
Original file line number Diff line number Diff line change 1+ ## 0.1.5
2+
3+ - Support triangle wave.
4+ - Contributor: @AntiMatterAMA
5+
16## 0.1.4
27
38- Fix channels of Player class from 2 to 1 to play proper sound.
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ $ pip install pyaudio
7171
7272## Supported OS
7373
74- - macOS Sierra
74+ - macOS 10.12 and above
7575- Ubuntu 16.04
7676
7777## Supported versions
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
2- version = '0.1.4'
3-
4- try :
5- import pypandoc
6- read_md = lambda f : pypandoc .convert (f , 'rst' )
7- except ImportError :
8- print ("warning: pypandoc module not found, could not convert Markdown to RST" )
9- read_md = lambda f : open (f , 'r' ).read ()
2+ version = '0.1.5'
103
114setup (
125 name = 'synthesizer' ,
2821 packages = find_packages (exclude = ['test' ]),
2922 include_package_data = True ,
3023 zip_safe = True ,
31- long_description = read_md ('README.md' ),
24+ long_description = open ('README.md' ).read (),
25+ long_description_content_type = 'text/markdown' ,
3226 test_suite = 'nose.collector' ,
3327 install_requires = [
3428 'enum34>=1.1.6' ,
You can’t perform that action at this time.
0 commit comments