From 2e71cae8cbdecf021e43686287461713d58081d9 Mon Sep 17 00:00:00 2001 From: Vinit Kumar Date: Fri, 31 Mar 2017 16:47:05 +0530 Subject: [PATCH] update info --- .../inspectionProfiles/profiles_settings.xml | 7 + .idea/json2xml.iml | 11 ++ .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 150 ++++++++++++++++++ setup.py | 16 +- 7 files changed, 194 insertions(+), 8 deletions(-) create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/json2xml.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..c23ecac --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/.idea/json2xml.iml b/.idea/json2xml.iml new file mode 100644 index 0000000..9d1cbcc --- /dev/null +++ b/.idea/json2xml.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8ddcb2d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..478c95e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..5b18b23 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1490958366238 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/setup.py b/setup.py index 8a386be..60ddc94 100644 --- a/setup.py +++ b/setup.py @@ -1,23 +1,23 @@ from setuptools import setup, find_packages import os -version = '1.2.3' +version = '1.2.5' setup( name='json2xml', version=version, - description='To convert json data to xml data', + description='A simple python package to convert json to xml data', author='Vinit Kumar', - author_email='vinit.kumar@changer.nl', + author_email='vinit1414.08@bitmesra.ac.in', url='https://github.com/vinitkumar/json2xml', packages=find_packages(), zip_safe=False, include_package_data=True, - install_requires=['BeautifulSoup4==4.4.1', - 'dict2xml==1.3', - 'simplejson==3.6.5', + install_requires=['BeautifulSoup4==4.5.3', + 'dict2xml==1.5', + 'simplejson==3.10.0', 'six==1.10.0', - 'lxml', - 'requests', + 'lxml==3.7.3', + 'requests==2.13.0', ], )