We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4527b9f commit 6de7f49Copy full SHA for 6de7f49
.gitignore
@@ -0,0 +1 @@
1
+build/
setup.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
2
+
3
+from distutils.core import setup
4
5
+setup(name='java2python',
6
+ version='0.5',
7
+ packages=[
8
+ 'java2python',
9
+ 'java2python.mod',
10
+ 'java2python.config',
11
+ 'java2python.lib',
12
+ 'java2python.lang',
13
+ 'java2python.compiler',
14
+ ],
15
+ scripts=['bin/j2py'],
16
+ )
0 commit comments