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 -*-
|
||||
|
||||
# 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) 2022 Faelix Limited. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
import multiprocessing
|
||||
import requests
|
@ -1,23 +1,24 @@
|
||||
#!/usr/bin/env python2.7
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# 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) 2022 Faelix Limited. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
import os
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='nimvelo',
|
||||
description='Python 2.7 client library for the Nimvelo/Sipcentric API',
|
||||
name='nimvelo3',
|
||||
description='Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API',
|
||||
version='0.1.4',
|
||||
url='https://github.com/Nimvelo/python-client',
|
||||
author='David Maitland',
|
||||
author_email='david.maitland@nimvelo.com',
|
||||
url='https://github.com/faelix/nimvelo3',
|
||||
author='Marek Isalski',
|
||||
author_email='pypi-nimvelo3@maz.nu',
|
||||
license='MIT',
|
||||
keywords='nimvelo sipcentric voip pbx sms sip',
|
||||
packages=['nimvelo', 'nimvelo/stream'],
|
||||
keywords='nimvelo sipcentric simwood voip pbx sms sip',
|
||||
packages=['nimvelo3', 'nimvelo3/stream'],
|
||||
requires=['math', 'json', 'logging', 'time', 'simplejson'],
|
||||
install_requires=['requests']
|
||||
install_requires=['requests', 'simplejson'],
|
||||
)
|
||||
|
Loading…
Reference in New Issue