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.
Files changed (30) hide show
  1. {telesign-3.0.0/telesign.egg-info → telesign-3.0.1}/PKG-INFO +7 -1
  2. {telesign-3.0.0 → telesign-3.0.1}/setup.py +8 -5
  3. {telesign-3.0.0 → telesign-3.0.1}/telesign/__init__.py +0 -2
  4. {telesign-3.0.0 → telesign-3.0.1/telesign.egg-info}/PKG-INFO +7 -1
  5. {telesign-3.0.0 → telesign-3.0.1}/LICENSE.txt +0 -0
  6. {telesign-3.0.0 → telesign-3.0.1}/MANIFEST.in +0 -0
  7. {telesign-3.0.0 → telesign-3.0.1}/README.rst +0 -0
  8. {telesign-3.0.0 → telesign-3.0.1}/examples/messaging/1_send_message.py +0 -0
  9. {telesign-3.0.0 → telesign-3.0.1}/examples/messaging/2_send_message_with_verification_code.py +0 -0
  10. {telesign-3.0.0 → telesign-3.0.1}/examples/phoneid/1_check_phone_type_to_block_voip.py +0 -0
  11. {telesign-3.0.0 → telesign-3.0.1}/examples/phoneid/2_cleansing.py +0 -0
  12. {telesign-3.0.0 → telesign-3.0.1}/examples/score/1_check_phone_number_risk_level.py +0 -0
  13. {telesign-3.0.0 → telesign-3.0.1}/examples/voice/1_send_voice_call.py +0 -0
  14. {telesign-3.0.0 → telesign-3.0.1}/examples/voice/2_send_voice_call_with_verification_code.py +0 -0
  15. {telesign-3.0.0 → telesign-3.0.1}/examples/voice/3_send_voice_call_french.py +0 -0
  16. {telesign-3.0.0 → telesign-3.0.1}/setup.cfg +0 -0
  17. {telesign-3.0.0 → telesign-3.0.1}/telesign/messaging.py +0 -0
  18. {telesign-3.0.0 → telesign-3.0.1}/telesign/phoneid.py +0 -0
  19. {telesign-3.0.0 → telesign-3.0.1}/telesign/rest.py +0 -0
  20. {telesign-3.0.0 → telesign-3.0.1}/telesign/score.py +0 -0
  21. {telesign-3.0.0 → telesign-3.0.1}/telesign/util.py +0 -0
  22. {telesign-3.0.0 → telesign-3.0.1}/telesign/voice.py +0 -0
  23. {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/SOURCES.txt +0 -0
  24. {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/dependency_links.txt +0 -0
  25. {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/requires.txt +0 -0
  26. {telesign-3.0.0 → telesign-3.0.1}/telesign.egg-info/top_level.txt +0 -0
  27. {telesign-3.0.0 → telesign-3.0.1}/tests/__init__.py +0 -0
  28. {telesign-3.0.0 → telesign-3.0.1}/tests/test_phoneid.py +0 -0
  29. {telesign-3.0.0 → telesign-3.0.1}/tests/test_rest.py +0 -0
  30. {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.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.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'] + mock,
48
+ tests_require=['nose', 'pytz'],
46
49
  packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
47
50
  )
@@ -1,7 +1,5 @@
1
1
  from pkg_resources import get_distribution
2
2
 
3
- __import__('pkg_resources').declare_namespace(__name__)
4
-
5
3
  __version__ = get_distribution("telesign").version
6
4
  __author__ = "TeleSign"
7
5
  __copyright__ = "Copyright 2017, TeleSign Corp."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: telesign
3
- Version: 3.0.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
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