-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 702 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 702 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
setup(
name = 'jsonp2json',
version = '1.0',
packages = find_packages(),
license = "MIT",
description = 'Converts JSONP response to JSON format',
author = 'Yong Cheng Toh',
author_email = 'tohyongcheng@gmail.com',
url = 'https://github.com/tohyongcheng/jsonp2json',
keywords = ['json', 'jsonp', 'parse', 'convert'], # arbitrary keywords
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
)