Skip to content

Commit

Permalink
update info
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinit Kumar committed Mar 31, 2017
1 parent 8bd9e7f commit 2e71cae
Show file tree
Hide file tree
Showing 7 changed files with 194 additions and 8 deletions.
7 changes: 7 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/json2xml.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

150 changes: 150 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
],
)

0 comments on commit 2e71cae

Please sign in to comment.