setup.py: Small syntax fixes

This commit is contained in:
jaseg 2017-07-05 11:50:00 +02:00
parent e84ad601c3
commit cb0cfd07c9

View file

@ -1,11 +1,11 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from setuptools import setup, find_packages from setuptools import setup
setup( setup(
name = 'python-mpv', name = 'python-mpv',
version = '0.2.5', version = '0.2.5',
py_modules = ['mpv'], py_modules = ['mpv'],
description = ('A python interface to the mpv media player'), description = 'A python interface to the mpv media player',
url = 'https://github.com/jaseg/python-mpv', url = 'https://github.com/jaseg/python-mpv',
author = 'jaseg', author = 'jaseg',
author_email = 'github@jaseg.net', author_email = 'github@jaseg.net',
@ -25,5 +25,5 @@ setup(
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Sound/Audio :: Players', 'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Video :: Display' ] 'Topic :: Multimedia :: Video :: Display']
) )