File tree 4 files changed +17
-2
lines changed
4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
# file GENERATED by distutils, do NOT edit
2
+ LICENSE
3
+ README.md
2
4
jsonpyes.py
3
5
setup.cfg
4
6
setup.py
Original file line number Diff line number Diff line change
1
+ include README.md LICENSE
1
2
# file GENERATED by distutils, do NOT edit
2
3
jsonpyes.py
3
4
setup.cfg
Original file line number Diff line number Diff line change 9
9
from contrib .utils import count_file_lines as c_file_lines
10
10
__author__ = "Alexander Liu"
11
11
12
- version = "1.1.8 "
12
+ version = "1.2.0 "
13
13
14
14
15
15
"""
@@ -34,6 +34,15 @@ def show_help():
34
34
35
35
Import JSON to ElasticSearch using Python
36
36
-- Alexander Liu
37
+
38
+ """
39
+ +
40
+
41
+ version
42
+
43
+ +
44
+ """
45
+
37
46
38
47
This program prints files to standard output.
39
48
Any number of files can be specified.
Original file line number Diff line number Diff line change 1
1
from distutils .core import setup
2
+ from setuptools import find_packages
2
3
from jsonpyes import version
3
4
4
5
29
30
classifiers = [],
30
31
# Make this script executable in command line
31
32
scripts = ['jsonpyes.py' ],
32
- packages = ['contrib' , ],
33
+ #packages=['contrib', ],
34
+ packages = find_packages (),
35
+ include_package_data = True ,
33
36
)
You can’t perform that action at this time.
0 commit comments