Skip to content

Commit

Permalink
Fix a large part of setup.py
Browse files Browse the repository at this point in the history
Fixes: dependencies, author (maintainer) + email, link.
  • Loading branch information
VladimirSlavik committed May 4, 2020
1 parent 47a6fb2 commit 63267f0
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

from distutils.core import setup

setup(name='python-meh', version='0.48',
setup(name='python-meh',
version='0.48',
description='Python module for handling exceptions',
author='Chris Lumens', author_email='[email protected]',
url='http://git.fedoraproject.org/git/?p=python-meh.git',
data_files = [('/usr/share/python-meh', ['ui/exception-dialog.glade'])],
packages=['meh', 'meh.ui'])
license="GPL-2.0+",
author='Chris Lumens',
author_email='[email protected]',
maintainer='Anaconda maintenance team',
maintainer_email='[email protected]',
url='https://github.com/rhinstaller/python-meh',
data_files=[('/usr/share/python-meh', ['ui/exception-dialog.glade'])],
packages=['meh', 'meh.ui'],
install_requires=['dbus-python', 'PyGObject', 'report', 'rpm'])

0 comments on commit 63267f0

Please sign in to comment.