Skip to content

Commit

Permalink
Bump version and release fixes for 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed May 28, 2019
1 parent 0f6e65e commit 8b6155d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
4 changes: 2 additions & 2 deletions live/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"""

__version__ = "0.1.1"
__version__ = "0.2.0"
__author__ = "Daniel Jones <http://www.erase.net/>"
__all__ = [ "Query", "Set", "Track", "Group", "Clip", "Device", "Parameter" ]
__all__ = [ "Query", "Set", "Track", "Group", "Clip", "Device", "Parameter", "Scene" ]

debug = False

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ test=pytest

[tool:pytest]
addopts = --verbose

14 changes: 3 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,12 @@

from setuptools import setup

#------------------------------------------------------------------------
# Generate a PyPI-friendly RST file from our markdown README.
#------------------------------------------------------------------------
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = None

setup(
name = 'pylive',
version = '0.1.5',
version = '0.2.0',
description = 'Python remote control of Ableton Live',
long_description = long_description,
long_description = open("README.md", "r").read(),
long_description_content_type = "text/markdown",
author = 'Daniel Jones',
author_email = '[email protected]',
url = 'https://github.com/ideoforms/pylive',
Expand Down

0 comments on commit 8b6155d

Please sign in to comment.