Skip to content

Commit 2e71cae

Browse files
author
Vinit Kumar
committed
update info
1 parent 8bd9e7f commit 2e71cae

File tree

7 files changed

+194
-8
lines changed

7 files changed

+194
-8
lines changed

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/json2xml.iml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 150 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
from setuptools import setup, find_packages
22
import os
33

4-
version = '1.2.3'
4+
version = '1.2.5'
55

66
setup(
77
name='json2xml',
88
version=version,
9-
description='To convert json data to xml data',
9+
description='A simple python package to convert json to xml data',
1010
author='Vinit Kumar',
11-
author_email='[email protected]',
11+
author_email='[email protected]',
1212
url='https://github.com/vinitkumar/json2xml',
1313
packages=find_packages(),
1414
zip_safe=False,
1515
include_package_data=True,
16-
install_requires=['BeautifulSoup4==4.4.1',
17-
'dict2xml==1.3',
18-
'simplejson==3.6.5',
16+
install_requires=['BeautifulSoup4==4.5.3',
17+
'dict2xml==1.5',
18+
'simplejson==3.10.0',
1919
'six==1.10.0',
20-
'lxml',
21-
'requests',
20+
'lxml==3.7.3',
21+
'requests==2.13.0',
2222
],
2323
)

0 commit comments

Comments
 (0)