2011-11-21 03:21:14 +00:00
|
|
|
#!/usr/bin/env python2
|
2010-10-19 19:56:17 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
setup(name="gfceu",
|
|
|
|
version="0.6.1",
|
|
|
|
scripts = ['gfceu'],
|
|
|
|
data_files=[('share/gfceu/',['gfceu.glade', 'gfceu_big.png', 'gfceu.png']),
|
|
|
|
('share/pixmaps/', ['gfceu.png']),
|
|
|
|
('share/man/man1/', ['gfceu.1']),
|
|
|
|
('share/applications/', ['gfceu.desktop'])],
|
|
|
|
author = "Lukas Sabota",
|
|
|
|
author_email = "ltsmooth42 _at_ gmail.com",
|
2011-11-21 03:21:14 +00:00
|
|
|
url = "http://fceux.com"
|
2010-10-19 19:56:17 +00:00
|
|
|
|
|
|
|
)
|
|
|
|
|