comp/setup.py
2014-08-10 23:27:26 +02:00

13 lines
341 B
Python
Executable file

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