[go: up one dir, main page]

Menu

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

Download this file

20 lines (17 with data), 420 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
import sys
sys.path.insert(1, "lib")
from maxicom.strings import *
files = ["glade/*"]
setup(name = PACKAGE,
version = VERSION,
description = DESCRIPTION,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
license = LICENSE,
package_dir = {'': 'lib'},
packages = ['maxicom'],
package_data = {'maxicom' : files },
scripts = ["maxicom"],
)