#!/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'
)