Fixed versioning.

This commit is contained in:
Andrew Dunai 2018-01-30 15:31:22 +02:00
parent f6e4277cbd
commit 419dd58582
2 changed files with 3 additions and 2 deletions

View file

@ -2,7 +2,7 @@
Predefined values.
"""
APP_NAME = 'Clay Player'
VERSION = '0.1b'
VERSION = '0.5.2'
USER_AGENT = ' '.join([
'Mozilla/5.0 (X11; Linux x86_64)'
'AppleWebKit/537.36 (KHTML, like Gecko)'

View file

@ -1,10 +1,11 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
from clay.meta import VERSION
setup(
name='clay-player',
version='0.5.1',
version=VERSION,
description='Command Line Player for Google Play Music',
author='Andrew Dunai',
author_email='a@dun.ai',