telesign 3.0.0__tar.gz → 3.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {telesign-3.0.0/telesign.egg-info → telesign-3.0.1}/PKG-INFO +7 -1
- {telesign-3.0.0 → telesign-3.0.1}/setup.py +8 -5
- {telesign-3.0.0 → telesign-3.0.1}/telesign/__init__.py +0 -2
- {telesign-3.0.0 → telesign-3.0.1/telesign.egg-info}/PKG-INFO +7 -1
- {telesign-3.0.0 → telesign-3.0.1}/LICENSE.txt +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/MANIFEST.in +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/README.rst +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/messaging/1_send_message.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/messaging/2_send_message_with_verification_code.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/phoneid/1_check_phone_type_to_block_voip.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/phoneid/2_cleansing.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/score/1_check_phone_number_risk_level.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/voice/1_send_voice_call.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/voice/2_send_voice_call_with_verification_code.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/examples/voice/3_send_voice_call_french.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/setup.cfg +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign/messaging.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign/phoneid.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign/rest.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign/score.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign/util.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign/voice.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/SOURCES.txt +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/dependency_links.txt +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/requires.txt +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/top_level.txt +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/tests/__init__.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/tests/test_phoneid.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/tests/test_rest.py +0 -0
- {telesign-3.0.0 → telesign-3.0.1}/tests/test_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 1.1
|
|
2
2
|
Name: telesign
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1
|
|
4
4
|
Summary: TeleSign SDK
|
|
5
5
|
Home-page: https://github.com/telesign/python_telesign
|
|
6
6
|
Author: TeleSign Corp.
|
|
@@ -112,3 +112,9 @@ Classifier: Programming Language :: Python :: 3.3
|
|
|
112
112
|
Classifier: Programming Language :: Python :: 3.4
|
|
113
113
|
Classifier: Programming Language :: Python :: 3.5
|
|
114
114
|
Classifier: Programming Language :: Python :: 3.6
|
|
115
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
116
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
117
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
118
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
119
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
120
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -6,12 +6,9 @@ from setuptools import setup, find_packages
|
|
|
6
6
|
|
|
7
7
|
EXCLUDE_FROM_PACKAGES = ['tests']
|
|
8
8
|
|
|
9
|
-
needs_mock = sys.version_info < (3, 3)
|
|
10
|
-
mock = ['mock'] if needs_mock else []
|
|
11
|
-
|
|
12
9
|
here = path.abspath(path.dirname(__file__))
|
|
13
10
|
|
|
14
|
-
version = "3.0.
|
|
11
|
+
version = "3.0.1"
|
|
15
12
|
|
|
16
13
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
|
17
14
|
long_description = f.read()
|
|
@@ -34,6 +31,12 @@ setup(name='telesign',
|
|
|
34
31
|
"Programming Language :: Python :: 3.4",
|
|
35
32
|
"Programming Language :: Python :: 3.5",
|
|
36
33
|
"Programming Language :: Python :: 3.6",
|
|
34
|
+
"Programming Language :: Python :: 3.7",
|
|
35
|
+
"Programming Language :: Python :: 3.8",
|
|
36
|
+
"Programming Language :: Python :: 3.9",
|
|
37
|
+
"Programming Language :: Python :: 3.10",
|
|
38
|
+
"Programming Language :: Python :: 3.11",
|
|
39
|
+
"Programming Language :: Python :: 3.12",
|
|
37
40
|
],
|
|
38
41
|
long_description=long_description,
|
|
39
42
|
keywords='telesign, sms, voice, mobile, authentication, identity, messaging',
|
|
@@ -42,6 +45,6 @@ setup(name='telesign',
|
|
|
42
45
|
url="https://github.com/telesign/python_telesign",
|
|
43
46
|
install_requires=['requests'],
|
|
44
47
|
test_suite='nose.collector',
|
|
45
|
-
tests_require=['nose', 'pytz']
|
|
48
|
+
tests_require=['nose', 'pytz'],
|
|
46
49
|
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
|
|
47
50
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 1.1
|
|
2
2
|
Name: telesign
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1
|
|
4
4
|
Summary: TeleSign SDK
|
|
5
5
|
Home-page: https://github.com/telesign/python_telesign
|
|
6
6
|
Author: TeleSign Corp.
|
|
@@ -112,3 +112,9 @@ Classifier: Programming Language :: Python :: 3.3
|
|
|
112
112
|
Classifier: Programming Language :: Python :: 3.4
|
|
113
113
|
Classifier: Programming Language :: Python :: 3.5
|
|
114
114
|
Classifier: Programming Language :: Python :: 3.6
|
|
115
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
116
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
117
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
118
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
119
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
120
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{telesign-3.0.0 → telesign-3.0.1}/examples/messaging/2_send_message_with_verification_code.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{telesign-3.0.0 → telesign-3.0.1}/examples/voice/2_send_voice_call_with_verification_code.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|