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.

24 lines
753 B
Python

9 years ago
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
# setup.py
# Python 2.7 client library for the Nimvelo/Sipcentric API
# Copyright (c) 2015 Sipcentric Ltd. 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',
version='0.1.1',
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'],
install_requires=['requests', 'multiprocessing']
)