You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
921 B
Python

#!/usr/bin/env python3
9 years ago
# -*- coding: utf-8 -*-
# setup.py
# Modern Python client library for the Simwood Partner (Nimvelo/Sipcentric) API
9 years ago
# 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
9 years ago
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',
9 years ago
license='MIT',
keywords='nimvelo sipcentric simwood voip pbx sms sip',
packages=['nimvelo3', 'nimvelo3/stream'],
requires=['math', 'json', 'logging', 'time', 'simplejson'],
install_requires=['requests', 'simplejson'],
9 years ago
)