[go: up one dir, main page]

Menu

[r3]: / trunk / setup.py  Maximize  Restore  History

Download this file

17 lines (14 with data), 456 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
from distutils.core import setup
files = ["glade/*"]
setup(name = "MaxiCom",
version = "0.1",
description = "A serial port terminal emulator for the GNOME desktop.",
author = "Gareth McMullin",
author_email = "gsmcmullin@users.sourceforge.net",
url = "http://maxicom.sf.net/",
license = "GNU GPLv3",
package_dir = {'': 'lib'},
packages = ['maxicom'],
package_data = {'maxicom' : files },
scripts = ["maxicom"],
)