11 lines
395 B
Python
11 lines
395 B
Python
#!/usr/bin/python2
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='python-meh', version='0.43',
|
|
description='Python module for handling exceptions',
|
|
author='Chris Lumens', author_email='clumens@redhat.com',
|
|
url='http://git.fedoraproject.org/git/?p=python-meh.git',
|
|
data_files = [('/usr/share/python-meh', ['ui/exception-dialog.glade'])],
|
|
packages=['meh', 'meh.ui'])
|