added necessary files

This commit is contained in:
jeena 2013-04-23 20:34:00 +02:00
parent 77bccc067c
commit 477666f6f9
6 changed files with 10086 additions and 1 deletions

19
setup.py Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env python2
import os
from distutils.core import setup
setup(
name = "feedthemonkey",
version = "0.1.0",
author = "Jeena Paradies",
author_email = "spam@jeenaparadies.net",
url = "http://jabs.nu/feedthemonkey",
license = "BSD license",
packages = ['feedthemonkey'],
scripts = ["feedthemonkey"],
data_files=[
('/usr/share/applications', ["feedthemonkey.desktop"]),
('/usr/share/pixmaps', ["feedthemonkey.xpm"])
]
)