Initial commit
This commit is contained in:
commit
9b68b0866e
5 changed files with 1275 additions and 0 deletions
13
setup.py
Executable file
13
setup.py
Executable 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'
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue