fceux/setup.py

15 lines
480 B
Python
Raw Normal View History

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",
version="2.0.0",
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
)