-
Notifications
You must be signed in to change notification settings - Fork 76
/
setup.py
87 lines (77 loc) · 3.25 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Python package setup script -*- coding: utf-8 -*-
name = 'demjson'
version = '2.2.4'
import sys
try:
py_major = sys.version_info.major
except AttributeError:
py_major = sys.version_info[0]
distmech = None
if py_major >= 3:
# Python 3, use setuptools first
try:
from setuptools import setup
distmech = 'setuptools'
except ImportError:
from distutils.core import setup
distmech = 'distutils'
else:
# Python 2, use distutils first
try:
from distutils.core import setup
distmech = 'distutils'
except ImportError:
from setuptools import setup
distmech = 'setuptools'
if False:
sys.stdout.write("Using Python: %s\n" % sys.version.split(None,1)[0])
sys.stdout.write("Using installer: %s\n" % distmech )
py3extra = {}
if py_major >= 3:
# Make sure 2to3 gets run
if distmech == 'setuptools':
py3extra['use_2to3'] = True
#py3extra['convert_2to3_doctests'] = ['src/your/module/README.txt']
#py3extra['use_2to3_fixers'] = ['your.fixers']
elif distmech == 'distutils':
import distutils, distutils.command, distutils.command.build_py, distutils.command.build_scripts
cmdclass = {
'build_py': distutils.command.build_py.build_py_2to3,
'build_scripts': distutils.command.build_scripts.build_scripts_2to3
}
py3extra['cmdclass'] = cmdclass
setup( name=name,
version=version,
py_modules=[name],
scripts=['jsonlint'],
author='Deron Meranda',
author_email='[email protected]',
url='http://deron.meranda.us/python/%s/'%name,
download_url='http://deron.meranda.us/python/%(name)s/dist/%(name)s-%(version)s.tar.gz'\
% {'name':name, 'version':version},
description='encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 7159',
long_description="""
The "demjson" module, and the included "jsonlint" script, provide methods
for encoding and decoding JSON formatted data, as well as checking JSON
data for errors and/or portability issues. The jsonlint command/script
can be used from the command line without needing any programming.
Although the standard Python library now includes basic JSON support
(which it did not when demjson was first written), this module
provides a much more comprehensive implementation with many features
not found elsewhere. It is especially useful for error checking or
for parsing JavaScript data which may not strictly be valid JSON data.
""".strip(),
license='GNU LGPL 3.0',
keywords=['JSON','jsonlint','JavaScript','UTF-32'],
platforms=[],
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
**py3extra
)