|
1 | | -import sys |
2 | 1 | from setuptools import setup |
3 | 2 |
|
4 | | -required = [] |
5 | | - |
6 | | - |
7 | | -if sys.version_info[:2] < (2,7): |
8 | | - required.append('simplejson') |
9 | | - required.append('ordereddict') |
10 | 3 |
|
11 | 4 | setup( |
12 | 5 | name = 'json2html', |
13 | 6 | packages = ['json2html'], |
14 | 7 | version = '1.3.0', |
15 | | - install_requires=required, |
16 | 8 | description = 'JSON to HTML Table Representation', |
17 | 9 | long_description=open('README.rst').read(), |
18 | 10 | author = 'Varun Malhotra', |
|
21 | 13 | download_url = 'https://github.com/softvar/json2html/tarball/1.3.0', |
22 | 14 | keywords = ['json', 'HTML', 'Table'], |
23 | 15 | license = 'MIT', |
24 | | - classifiers = ( |
25 | | - ), |
| 16 | + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', |
| 17 | + classifiers = [ |
| 18 | + 'Programming Language :: Python :: 2', |
| 19 | + 'Programming Language :: Python :: 2.7', |
| 20 | + 'Programming Language :: Python :: 3', |
| 21 | + 'Programming Language :: Python :: 3.5', |
| 22 | + 'Programming Language :: Python :: 3.6', |
| 23 | + 'Programming Language :: Python :: 3.7', |
| 24 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 25 | + ], |
26 | 26 | ) |
0 commit comments