summaryrefslogtreecommitdiff
path: root/setup.py
blob: a527aa02c37e25e876e6da8c0add8d62821c2d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'
)