forked from hay/xml2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 786 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
from setuptools import setup, find_packages
setup(
name = "xml2json",
version = "0.1",
author = "Hay Kranen",
author_email = "[email protected]",
description = ("Python script converts XML to JSON or the other way around"),
license = "GPLv3+",
keywords = "xml json",
url = "http://github.com/hay/xml2json",
#packages=find_packages(exclude=['ez_setup']),
py_modules=['xml2json'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
install_requires=[
'simplejson'
],
entry_points="""
[console_scripts]
xml2json = xml2json:xml2json
""",
)