Skip to content

Commit 4eeaac4

Browse files
committed
update to version 1.2.0
1 parent 4f90f1d commit 4eeaac4

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

MANIFEST

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# file GENERATED by distutils, do NOT edit
2+
LICENSE
3+
README.md
24
jsonpyes.py
35
setup.cfg
46
setup.py

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
include README.md LICENSE
12
# file GENERATED by distutils, do NOT edit
23
jsonpyes.py
34
setup.cfg

jsonpyes.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from contrib.utils import count_file_lines as c_file_lines
1010
__author__ = "Alexander Liu"
1111

12-
version = "1.1.8"
12+
version = "1.2.0"
1313

1414

1515
"""
@@ -34,6 +34,15 @@ def show_help():
3434
3535
Import JSON to ElasticSearch using Python
3636
-- Alexander Liu
37+
38+
"""
39+
+
40+
41+
version
42+
43+
+
44+
"""
45+
3746
3847
This program prints files to standard output.
3948
Any number of files can be specified.

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from distutils.core import setup
2+
from setuptools import find_packages
23
from jsonpyes import version
34

45

@@ -29,5 +30,7 @@
2930
classifiers=[],
3031
# Make this script executable in command line
3132
scripts=['jsonpyes.py'],
32-
packages=['contrib', ],
33+
#packages=['contrib', ],
34+
packages=find_packages(),
35+
include_package_data=True,
3336
)

0 commit comments

Comments
 (0)