setup.py: Small syntax fixes
This commit is contained in:
parent
e84ad601c3
commit
cb0cfd07c9
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -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']
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue