updated licensing
This commit is contained in:
parent
6f36de4a08
commit
3dc531b127
6
.gitignore
vendored
6
.gitignore
vendored
@ -3,6 +3,7 @@ __pycache__/
|
|||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
*.pyc
|
*.pyc
|
||||||
|
*.swp
|
||||||
|
|
||||||
# Installer logs
|
# Installer logs
|
||||||
pip-log.txt
|
pip-log.txt
|
||||||
@ -25,12 +26,13 @@ share
|
|||||||
pyvenv.cfg
|
pyvenv.cfg
|
||||||
templates
|
templates
|
||||||
*.egg-info
|
*.egg-info
|
||||||
|
man
|
||||||
|
include
|
||||||
|
|
||||||
# Unit test / coverage reports
|
# Unit test / coverage reports
|
||||||
.coverage
|
.coverage
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
.tox
|
.tox
|
||||||
test.py
|
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
@ -41,4 +43,4 @@ htmlcov*
|
|||||||
.python-version
|
.python-version
|
||||||
|
|
||||||
# Visual Studio Code
|
# Visual Studio Code
|
||||||
.vscode/
|
.vscode/
|
||||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="voipms-python",
|
name="voipms-python",
|
||||||
version="0.0.1",
|
version="0.0.2",
|
||||||
description="Python wrapper for the voip.ms REST API",
|
description="Python wrapper for the voip.ms REST API",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
@ -118,16 +118,16 @@ class Client(object):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def termination_rates(self):
|
def termination_rates(self):
|
||||||
return self.call_detail_records.termination_rates
|
return self.call_detail_records.termination_rates
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def search(self):
|
def search(self):
|
||||||
return self.dids.search
|
return self.dids.search
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def sms(self):
|
def sms(self):
|
||||||
return self.dids.sms
|
return self.dids.sms
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def messages(self):
|
def messages(self):
|
||||||
return self.voicemail.messages
|
return self.voicemail.messages
|
Loading…
Reference in New Issue
Block a user