forked from softvar/json2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 855 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
29
30
import sys
from setuptools import setup
required = []
if sys.version_info[:2] < (2,7):
required.append('simplejson')
required.append('ordereddict')
setup(
name = 'json2html',
packages = ['json2html'],
version = '1.1.1',
install_requires=required,
description = 'JSON to HTML Table Representation',
long_description=open('README.rst').read(),
author = 'Varun Malhotra',
author_email = 'varun2902@gmail.com',
url = 'https://github.com/softvar/json2html',
download_url = 'https://github.com/softvar/json2html/tarball/1.1.1',
keywords = ['json', 'HTML', 'Table'],
license = 'MIT',
classifiers = (
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
),
)