mirror of
https://github.com/0intro/wmii
synced 2024-11-22 22:02:30 +03:00
15 lines
317 B
Python
15 lines
317 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='pygmi',
|
||
|
version='0.2',
|
||
|
description='Python wmii interaction library',
|
||
|
author='Kris Maglione',
|
||
|
author_email='maglione.k@gmail.com',
|
||
|
url='http://wmii.suckless.org',
|
||
|
packages=['pygmi'],
|
||
|
license='MIT',
|
||
|
)
|
||
|
|