Skip to content

Commit 6de7f49

Browse files
committed
Added python setup.py script and .gitignore for python setup.py build dir.
1 parent 4527b9f commit 6de7f49

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/

setup.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/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

Comments
 (0)