Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7befea3 commit be556d5Copy full SHA for be556d5
setup.py
@@ -11,6 +11,7 @@
11
"""
12
13
from distutils.core import setup
14
+from os import path, listdir
15
16
17
classifiers = """
@@ -31,6 +32,10 @@
31
32
long_description = '\n'.join(__doc__.split('\n')[4:])
33
34
35
+def doc_files():
36
+ return [path.join('doc', name) for name in listdir('doc')]
37
+
38
39
setup(
40
name='java2python',
41
version='0.5.0',
@@ -71,6 +76,10 @@
71
76
'bin/j2py',
72
77
],
73
78
79
+ data_files=[
80
+ ('doc', doc_files()),
81
+ ],
82
74
83
install_requires=['antlr_python_runtime==3.1.3'],
75
84
85
)
0 commit comments