Initial commit

This commit is contained in:
jaseg 2014-08-10 23:25:25 +02:00
commit 9b68b0866e
5 changed files with 1275 additions and 0 deletions

13
setup.py Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name = 'mpv',
version = '0.1',
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 = 'AGPLv2'
)