added necessary files
This commit is contained in:
parent
77bccc067c
commit
477666f6f9
6 changed files with 10086 additions and 1 deletions
19
setup.py
Normal file
19
setup.py
Normal 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"])
|
||||
]
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue