-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
25 lines (24 loc) · 939 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
from setuptools import setup
setup(
name = 'json2html',
packages = ['json2html'],
version = '1.3.0',
description = 'JSON to HTML Table Representation',
long_description=open('README.md').read(),
author = 'Varun Malhotra',
author_email = 'varun2902@gmail.com',
url = 'https://github.com/softvar/json2html',
download_url = 'https://github.com/softvar/json2html/tarball/1.3.0',
keywords = ['json', 'HTML', 'Table'],
license = 'MIT',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
)