forked from vinitkumar/json2xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 662 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
version = '1.2.5'
setup(
name='json2xml',
version=version,
description='A simple python package to convert json to xml data',
author='Vinit Kumar',
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.5.3',
'dict2xml==1.5',
'simplejson==3.10.0',
'six==1.10.0',
'lxml==3.7.3',
'requests==2.13.0',
],
)