Skip to content

Commit

Permalink
beta playlist support for new dynamic playlist api, move version para…
Browse files Browse the repository at this point in the history
…meter to a single place
  • Loading branch information
Tyler Williams committed Apr 3, 2012
1 parent 8afe498 commit e63269f
Show file tree
Hide file tree
Showing 4 changed files with 406 additions and 3 deletions.
7 changes: 6 additions & 1 deletion pyechonest/config.py
Expand Up @@ -8,7 +8,12 @@
Global configuration variables for accessing the Echo Nest web API.
"""

__version__ = "4.2.16"
import pkg_resources

try:
__version__ = pkg_resources.require("pyechonest")[0].version
except pkg_resources.DistributionNotFound:
__version__ = "0.0.0"

import sys, os

Expand Down

0 comments on commit e63269f

Please sign in to comment.