2006-07-30 04:00:49 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
2008-08-03 00:50:40 +00:00
|
|
|
setup(name="gfceux",
|
2008-12-05 09:02:00 +00:00
|
|
|
version="2.0.4",
|
2008-08-03 00:55:21 +00:00
|
|
|
scripts = ['gfceux'],
|
2008-08-03 00:50:40 +00:00
|
|
|
data_files=[('share/gfceux/',['gfceux.xml', 'gfceux_big.png', 'gfceux.png']),
|
|
|
|
('share/pixmaps/', ['gfceux.png']),
|
|
|
|
('share/man/man1/', ['gfceux.1']),
|
|
|
|
('share/applications/', ['gfceux.desktop'])],
|
2006-07-30 04:00:49 +00:00
|
|
|
author = "Lukas Sabota",
|
2008-08-03 00:50:40 +00:00
|
|
|
author_email = "ltsmooth42 _at_ gmail.com",
|
|
|
|
url = "http://dietschnitzel.com/gfceu"
|
2006-07-30 04:00:49 +00:00
|
|
|
)
|
|
|
|
|