mirror of
https://github.com/0intro/wmii
synced 2024-11-25 07:09:38 +03:00
15 lines
308 B
Python
Executable File
15 lines
308 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='pyxp',
|
|
version='0.2',
|
|
description='Python 9P client library',
|
|
author='Kris Maglione',
|
|
author_email='maglione.k@gmail.com',
|
|
url='http://wmii.suckless.org',
|
|
packages=['pyxp'],
|
|
license='MIT',
|
|
)
|
|
|