diff options
author | jaseg <code@jaseg.net> | 2017-05-26 13:24:18 +0200 |
---|---|---|
committer | jaseg <code@jaseg.net> | 2017-05-26 13:24:18 +0200 |
commit | 87c007cc4d2ead1b7515260706572185751935f6 (patch) | |
tree | 1074a780be8832eee643f9d78370d38a8b83fdb8 /setup.py | |
parent | f841f343cf6fea5f8b6bd1bddbef5e7452a73e66 (diff) | |
download | python-mpv-87c007cc4d2ead1b7515260706572185751935f6.tar.gz python-mpv-87c007cc4d2ead1b7515260706572185751935f6.tar.bz2 python-mpv-87c007cc4d2ead1b7515260706572185751935f6.zip |
Fix for pypi submission
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 21 |
1 files changed, 18 insertions, 3 deletions
@@ -2,12 +2,27 @@ from setuptools import setup, find_packages setup( - name = 'mpv', - version = '0.1', + name = 'python-mpv', + version = '0.2', py_modules = ['mpv'], description = ('A python interface to the mpv media player'), url = 'https://github.com/jaseg/python-mpv', author = 'jaseg', author_email = 'github@jaseg.net', - license = 'AGPLv3' + license = 'AGPLv3+', + keywords = ['mpv', 'library', 'video', 'audio', 'player', 'display', + 'multimedia'], + classifiers = [ + 'Development Status :: 4 - Beta', + 'Environment :: Win32 (MS Windows)', + 'Environment :: X11 Applications', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + 'Natural Language :: English', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Programming Language :: C', + 'Programming Language :: Python :: 3.6', + 'Topic :: Multimedia :: Sound/Audio :: Players', + 'Topic :: Multimedia :: Video :: Display' ] ) |