Changed json to simplejson
This commit is contained in:
parent
5da26b1fac
commit
2c84cff892
@ -8,10 +8,11 @@
|
||||
import sys
|
||||
import math
|
||||
import requests
|
||||
import json
|
||||
import time
|
||||
import logging
|
||||
|
||||
import simplejson as json
|
||||
|
||||
from stream import Stream
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
@ -7,10 +7,11 @@
|
||||
|
||||
import multiprocessing
|
||||
import requests
|
||||
import json
|
||||
import time
|
||||
import logging
|
||||
|
||||
import simplejson as json
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
4
setup.py
4
setup.py
@ -11,13 +11,13 @@ from setuptools import setup
|
||||
setup(
|
||||
name='nimvelo',
|
||||
description='Python 2.7 client library for the Nimvelo/Sipcentric API',
|
||||
version='0.1.3',
|
||||
version='0.1.4',
|
||||
url='https://github.com/Nimvelo/python-client',
|
||||
author='David Maitland',
|
||||
author_email='david.maitland@nimvelo.com',
|
||||
license='MIT',
|
||||
keywords='nimvelo sipcentric voip pbx sms sip',
|
||||
packages=['nimvelo', 'nimvelo/stream'],
|
||||
requires=['math', 'json', 'logging', 'time'],
|
||||
requires=['math', 'json', 'logging', 'time', 'simplejson'],
|
||||
install_requires=['requests']
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user