Relase 0.2.3: Include Python 3.5 in package metadata

This commit is contained in:
jaseg 2017-05-26 18:02:30 +02:00
parent 027b25d693
commit c34d94a081

View file

@ -3,7 +3,7 @@
from setuptools import setup, find_packages
setup(
name = 'python-mpv',
version = '0.2.2',
version = '0.2.3',
py_modules = ['mpv'],
description = ('A python interface to the mpv media player'),
url = 'https://github.com/jaseg/python-mpv',
@ -23,6 +23,7 @@ setup(
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Video :: Display' ]
)