Skip to content

Commit

Permalink
Updating notes, added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tayler6000 committed Nov 3, 2021
1 parent 812eef1 commit 86500f0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
5 changes: 3 additions & 2 deletions NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ Added handling of Native Bridging tested with Asterisk 16 SIP re-invite (Externa
Changed the audio read function in RTP to return b'\x80'*length instead of bytes(length), doing so stops the popping on the client side when no audio is being written.
Fixed issue with ending phone calls originated by user.
Added handling of 404 Not Found and 503 Service Unavailable errors.
Added compatiblity with Asterisk PJSIP.
Added compatibility with Asterisk PJSIP.
Fixed bug with multithreaded calling.

Currently Known Issues:
Some issues with bridiging with Asterisk 18, and possible other versions. Bridging is not supported by all phones so it's unclear if it's supported by the softphone and hardphone I use to do my tests.
Some issues with bridging with Asterisk 18, and possibly other versions. Bridging is not supported by all phones so it's unclear if it's supported by the softphone and hardphone I use to do my tests.

Upcoming patches/changes:
Add support for CANCEL requests.
Add support for 603 Decline Responses
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from setuptools import find_packages
from setuptools import setup

setup(
name = 'pyVoIP',
version = '1.5.0',
description = 'PyVoIP is a pure python VoIP/SIP/RTP library.',
author = 'Tayler Porter',
author_email = 'taylerporter@gmail.com',
url = 'https://github.com/tayler6000/pyVoIP',
packages = find_packages()
)

0 comments on commit 86500f0

Please sign in to comment.