8

We have made a .py file that controls brightness of the screen. It has a GUI with slider for controlling and runs when it is double clicked after marking it as executable.

But we want to make a .deb package with it for easily distributing. Is there any way to do it with Quickly? If not, then what are the other ways?

We also want to associate it with an icon.

The project we are trying to debianize is here.

RobotHumans
  • 29,530
Archisman Panigrahi
  • 28,338
  • 18
  • 105
  • 212

2 Answers2

1

FPM is a great tool for packaging not only deb but other formats too like rpm.

Conzar
  • 400
0

If you check out the wiki for Quickly. It's the third step under "How to get started":

quickly package
Wes
  • 379
  • You cannot turn a .py file into .deb just by quickly package. – Archisman Panigrahi Jul 24 '13 at 14:08
  • 1
    I guess I assumed you're using quickly to create your project. The "using quickly" in your title and question implies that's what you're using to help create your python project. If you're not using quickly from start to finish for your project, then I'm afraid you can't package it with quickly. – Wes Jul 25 '13 at 15:37
  • I want to know if there is any way to port it to quickly. – Archisman Panigrahi Jul 26 '13 at 06:00