-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·35 lines (29 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/env python
# encoding: utf-8
import os,re
from setuptools import setup,find_packages
v = open(os.path.join(os.path.dirname(__file__), 'src', 'jsqt', '__init__.py'), 'r')
VERSION = re.match(r".*__version__ = '(.*?)'", v.read(), re.S).group(1)
setup(
name = 'JsQt',
version = VERSION,
packages = find_packages('src'),
package_dir = {'':'src'},
install_requires=['lxml>=2.2.2'],
entry_points = {
'console_scripts': [
'jsqt=jsqt.entry_points:main_jsqt',
'jsuic=jsqt.entry_points:main_jsuic',
],
},
author = 'Burak Arslan',
author_email = 'burak-jsqt@arskom.com.tr',
description = "A tool to compile Qt Designer's .ui files to qooxdoo code.",
long_description = """
JsQt is a tool to compile Qt Designer's .ui files to javascript code,
which is targeted to work with the Qooxdoo framework.
""",
url = 'http://jsqt.org',
license = 'GPLv2',
platforms = ['Linux','Mac OSX','Windows 7/Vista/XP/2000/NT','Windows 95/98/ME'],
)