-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_pyjstools.py
31 lines (29 loc) · 1.18 KB
/
setup_pyjstools.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
from setuptools import setup
__VERSION__='0.8.1'
packages=['pyjs', 'pyjs.builtin', 'pyjs.lib', 'pyjs.lib.logging', 'pyjs.lib.os', 'pyjs.lib.test',
'pyjs.lib_trans', 'pyjs.lib_trans.pycompiler', 'pyjs.lib_trans.pyparser', 'pyjs.lib_trans.test',
'pyjs.boilerplate',
'pgen', 'pgen.lib2to3', 'pgen.lib2to3.pgen2', 'pgen.lib2to3.compiler', ]
package_data={'pyjs': ['boilerplate/*.html', 'boilerplate/pyjampiler_wrapper.js.tmpl',
'builtin/__builtin__.py.in', 'builtin/public/*.js',
'contrib/compiler.jar'],
}
entry_points = {'console_scripts':[
'pyjampiler=pyjs.pyjampiler:pyjampiler',
'pyjscompile=pyjs.translator:main',
'pyjsbuild=pyjs.browser:build_script',
'pyv8run=pyjs.pyv8.pyv8run:main',
'pyjstest=pyjs.pyjstest:pyjstest',
'java2py=pyjs.contrib.java2py:main',
'mo2json=pyjs.contrib.mo2json:main',
'pyjscompressor=pyjs.contrib.pyjscompressor:main',
]}
# setup(
# name="pyjs_tools",
# version=__VERSION__,
# packages=packages,
# package_data=package_data,
# zip_safe = False,
# install_requires = install_requires,
# entry_points = entry_points,
# )