Cleaned up binary
[biamove.git] / setup.py
1 # setup program for the BiaMovE application
2
3 from distutils.core import setup
4
5 setup ( name = "BiaMovE",
6 version = "0.2",
7 description = "BiaMovE - a mencoder graphical front-end written in Python/Tkinter",
8 keywords = "mencoder,gui,biamove,video encoding,video converting",
9 author = "V.Harishankar",
10 author_email = "v.harishankar@gmail.com",
11 license = "Licensed under the GNU/General Public License v3 (http://www.gnu.org/licenses/gpl.html)",
12 py_modules = [ "audiocodecdialogs", "videofilterdialogs", "videocodecdialogs", "videomuxerdialogs", "miscdialogs", "mainwindow" ],
13 scripts = [ "biamove.py" ],
14 platforms = [ "linux, windows" ]
15 )