/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/usr/bin/env python from distutils.core import setup setup(name = "fsd", version = "1.1.3", description = "Free Software Dispatcher is a tool born with the aim of help distributing Free Software", author = "Francisco Jesus Jordano Jimenez", url = "https://forja.rediris.es/projects/fsd", packages=["fsd","fsd.common","fsd.config"], data_files=[("/usr/share/fsd/ui",["ui/brasero.png","ui/dvdrom.png","ui/fsd-main.glade","ui/linux.png","ui/media-optical.png","ui/noimage.jpg","ui/osx.png","ui/solaris.png","ui/windows.png"]), ("/usr/share/fsd/",["db/database.db3","db/database.sql"]), ("/usr/local/bin/",["fsd/fsd.py"])] )