Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknyquist committed Nov 30, 2020
1 parent f568486 commit 581265e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
from setuptools import setup
from distutils.core import Command

from tones import __version__

HERE = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(HERE, "README.rst")

Expand All @@ -24,7 +26,7 @@

setup(
name='tones',
version='1.0.1',
version=__version__,
description=('Generates simple polyphonic tones and melodies'),
long_description=long_description,
url='http://github.com/eriknyquist/tones',
Expand Down
7 changes: 7 additions & 0 deletions tones/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
__author__ = "Erik Nyquist"
__license__ = "Apache 2.0"
__version__ = "1.2.0"
__maintainer__ = "Erik Nyquist"
__email__ = "[email protected]"


SINE_WAVE = 0
SQUARE_WAVE = 1
TRIANGLE_WAVE = 2
Expand Down

0 comments on commit 581265e

Please sign in to comment.