rename from nimvelo3 to sipcentric
parent
23ccc01d5b
commit
f2ce5f4bac
@ -0,0 +1,6 @@
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=42",
|
||||
"wheel"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
@ -0,0 +1,34 @@
|
||||
[metadata]
|
||||
name = sipcentric
|
||||
version = 0.0.0
|
||||
author = Marek Isalski
|
||||
author_email = pypi-sipcentric@maz.nu
|
||||
description = Modern Python client library for the Sipsentric (Simwood Partner, formerly Nimvelo) API
|
||||
long_description = file: README.md
|
||||
long_description_content_type = text/markdown
|
||||
url = https://github.com/faelix/sipcentric
|
||||
project_urls =
|
||||
Bug Tracker = https://github.com/faelix/sipcentric/issues
|
||||
classifiers =
|
||||
Programming Language :: Python :: 3
|
||||
License :: OSI Approved :: MIT License
|
||||
Operating System :: OS Independent
|
||||
keywords = sipcentric, simwood, nimvelo, voip, pbx, sms, sip
|
||||
|
||||
[options]
|
||||
package_dir =
|
||||
= src
|
||||
packages = find:
|
||||
python_requires = >=3.6
|
||||
install_requires =
|
||||
requests
|
||||
simplejson
|
||||
requires =
|
||||
math
|
||||
json
|
||||
logging
|
||||
time
|
||||
simplejson
|
||||
|
||||
[options.packages.find]
|
||||
where = src
|
@ -1,24 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# setup.py
|
||||
# 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='nimvelo3',
|
||||
description='Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API',
|
||||
version='0.1.4',
|
||||
url='https://github.com/faelix/nimvelo3',
|
||||
author='Marek Isalski',
|
||||
author_email='pypi-nimvelo3@maz.nu',
|
||||
license='MIT',
|
||||
keywords='nimvelo sipcentric simwood voip pbx sms sip',
|
||||
packages=['nimvelo3', 'nimvelo3/stream'],
|
||||
requires=['math', 'json', 'logging', 'time', 'simplejson'],
|
||||
install_requires=['requests', 'simplejson'],
|
||||
)
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# nimvelo/stream/__init__.py
|
||||
# Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API
|
||||
# sipcentric/stream/__init__.py
|
||||
# Modern Python client library for the Sipcentric (Simwood Partner, formerly Nimvelo) 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
|
||||
|
Loading…
Reference in New Issue