fork nimvelo3 and start project
parent
10c1d9066e
commit
23ccc01d5b
@ -0,0 +1,65 @@
|
|||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
^__pycache__/
|
||||||
|
\.py[cod]$
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
\.so$
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
\.Python
|
||||||
|
^env/
|
||||||
|
^build/
|
||||||
|
^develop-eggs/
|
||||||
|
^dist/
|
||||||
|
^downloads/
|
||||||
|
^eggs/
|
||||||
|
^\.eggs/
|
||||||
|
^lib/
|
||||||
|
^lib64/
|
||||||
|
^parts/
|
||||||
|
^sdist/
|
||||||
|
^var/
|
||||||
|
^\.egg-info/
|
||||||
|
^\.installed.cfg$
|
||||||
|
\.egg$
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
\.manifest$
|
||||||
|
\.spec$
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
^pip-log\.txt$
|
||||||
|
^pip-delete-this-directory\.txt$
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
^htmlcov/
|
||||||
|
^\.tox/
|
||||||
|
^\.coverage$
|
||||||
|
^\.coverage\.
|
||||||
|
^\.cache$
|
||||||
|
^nosetests\.xml$
|
||||||
|
^coverage\.xml$
|
||||||
|
,cover$
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
\.mo$
|
||||||
|
\.pot$
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
\.log$
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
^docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
^target/
|
||||||
|
|
||||||
|
# Nimvelo
|
||||||
|
^example\.py$
|
||||||
|
|
||||||
|
# local virtualenv
|
||||||
|
^Pipfile$
|
||||||
|
^Pipfile\.lock$
|
||||||
|
^\.venv/
|
@ -1,9 +1,10 @@
|
|||||||
#!/usr/bin/env python2.7
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# nimvelo/stream/__init__.py
|
# nimvelo/stream/__init__.py
|
||||||
# Python 2.7 client library for the Nimvelo/Sipcentric API
|
# Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API
|
||||||
# Copyright (c) 2015 Sipcentric Ltd. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
# Copyright (c) 2015 Sipcentric Ltd. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
||||||
|
# Copyright (c) 2022 Faelix Limited. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
||||||
|
|
||||||
import multiprocessing
|
import multiprocessing
|
||||||
import requests
|
import requests
|
@ -1,23 +1,24 @@
|
|||||||
#!/usr/bin/env python2.7
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# setup.py
|
# setup.py
|
||||||
# Python 2.7 client library for the Nimvelo/Sipcentric API
|
# Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API
|
||||||
# Copyright (c) 2015 Sipcentric Ltd. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
# Copyright (c) 2015 Sipcentric Ltd. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
||||||
|
# Copyright (c) 2022 Faelix Limited. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='nimvelo',
|
name='nimvelo3',
|
||||||
description='Python 2.7 client library for the Nimvelo/Sipcentric API',
|
description='Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API',
|
||||||
version='0.1.4',
|
version='0.1.4',
|
||||||
url='https://github.com/Nimvelo/python-client',
|
url='https://github.com/faelix/nimvelo3',
|
||||||
author='David Maitland',
|
author='Marek Isalski',
|
||||||
author_email='david.maitland@nimvelo.com',
|
author_email='pypi-nimvelo3@maz.nu',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
keywords='nimvelo sipcentric voip pbx sms sip',
|
keywords='nimvelo sipcentric simwood voip pbx sms sip',
|
||||||
packages=['nimvelo', 'nimvelo/stream'],
|
packages=['nimvelo3', 'nimvelo3/stream'],
|
||||||
requires=['math', 'json', 'logging', 'time', 'simplejson'],
|
requires=['math', 'json', 'logging', 'time', 'simplejson'],
|
||||||
install_requires=['requests']
|
install_requires=['requests', 'simplejson'],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue