singer-python 5.13.0__tar.gz → 5.13.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 (37) hide show
  1. singer_python-5.13.1/PKG-INFO +20 -0
  2. {singer-python-5.13.0 → singer_python-5.13.1}/setup.cfg +1 -1
  3. {singer-python-5.13.0 → singer_python-5.13.1}/setup.py +1 -1
  4. singer_python-5.13.1/singer_python.egg-info/PKG-INFO +20 -0
  5. singer-python-5.13.0/PKG-INFO +0 -11
  6. singer-python-5.13.0/singer_python.egg-info/PKG-INFO +0 -11
  7. {singer-python-5.13.0 → singer_python-5.13.1}/LICENSE +0 -0
  8. {singer-python-5.13.0 → singer_python-5.13.1}/README.md +0 -0
  9. {singer-python-5.13.0 → singer_python-5.13.1}/singer/__init__.py +0 -0
  10. {singer-python-5.13.0 → singer_python-5.13.1}/singer/bookmarks.py +0 -0
  11. {singer-python-5.13.0 → singer_python-5.13.1}/singer/catalog.py +0 -0
  12. {singer-python-5.13.0 → singer_python-5.13.1}/singer/exceptions.py +0 -0
  13. {singer-python-5.13.0 → singer_python-5.13.1}/singer/logger.py +0 -0
  14. {singer-python-5.13.0 → singer_python-5.13.1}/singer/logging.conf +0 -0
  15. {singer-python-5.13.0 → singer_python-5.13.1}/singer/messages.py +0 -0
  16. {singer-python-5.13.0 → singer_python-5.13.1}/singer/metadata.py +0 -0
  17. {singer-python-5.13.0 → singer_python-5.13.1}/singer/metrics.py +0 -0
  18. {singer-python-5.13.0 → singer_python-5.13.1}/singer/requests.py +0 -0
  19. {singer-python-5.13.0 → singer_python-5.13.1}/singer/schema.py +0 -0
  20. {singer-python-5.13.0 → singer_python-5.13.1}/singer/statediff.py +0 -0
  21. {singer-python-5.13.0 → singer_python-5.13.1}/singer/transform.py +0 -0
  22. {singer-python-5.13.0 → singer_python-5.13.1}/singer/utils.py +0 -0
  23. {singer-python-5.13.0 → singer_python-5.13.1}/singer_python.egg-info/SOURCES.txt +0 -0
  24. {singer-python-5.13.0 → singer_python-5.13.1}/singer_python.egg-info/dependency_links.txt +0 -0
  25. {singer-python-5.13.0 → singer_python-5.13.1}/singer_python.egg-info/requires.txt +0 -0
  26. {singer-python-5.13.0 → singer_python-5.13.1}/singer_python.egg-info/top_level.txt +0 -0
  27. {singer-python-5.13.0 → singer_python-5.13.1}/tests/__init__.py +0 -0
  28. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_bookmarks.py +0 -0
  29. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_catalog.py +0 -0
  30. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_exceptions.py +0 -0
  31. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_metadata.py +0 -0
  32. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_metrics.py +0 -0
  33. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_schema.py +0 -0
  34. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_singer.py +0 -0
  35. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_statediff.py +0 -0
  36. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_transform.py +0 -0
  37. {singer-python-5.13.0 → singer_python-5.13.1}/tests/test_utils.py +0 -0
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.1
2
+ Name: singer-python
3
+ Version: 5.13.1
4
+ Summary: Singer.io utility library
5
+ Home-page: http://singer.io
6
+ Author: Stitch
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ License-File: LICENSE
9
+ Requires-Dist: pytz>=2018.4
10
+ Requires-Dist: jsonschema==2.6.0
11
+ Requires-Dist: simplejson==3.11.1
12
+ Requires-Dist: python-dateutil>=2.6.0
13
+ Requires-Dist: backoff==1.8.0
14
+ Requires-Dist: ciso8601
15
+ Provides-Extra: dev
16
+ Requires-Dist: pylint; extra == "dev"
17
+ Requires-Dist: ipython; extra == "dev"
18
+ Requires-Dist: ipdb; extra == "dev"
19
+ Requires-Dist: nose; extra == "dev"
20
+ Requires-Dist: singer-tools; extra == "dev"
@@ -1,5 +1,5 @@
1
1
  [metadata]
2
- description-file = README.md
2
+ description_file = README.md
3
3
 
4
4
  [egg_info]
5
5
  tag_build =
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
4
4
  import subprocess
5
5
 
6
6
  setup(name="singer-python",
7
- version='5.13.0',
7
+ version='5.13.1',
8
8
  description="Singer.io utility library",
9
9
  author="Stitch",
10
10
  classifiers=['Programming Language :: Python :: 3 :: Only'],
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.1
2
+ Name: singer-python
3
+ Version: 5.13.1
4
+ Summary: Singer.io utility library
5
+ Home-page: http://singer.io
6
+ Author: Stitch
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ License-File: LICENSE
9
+ Requires-Dist: pytz>=2018.4
10
+ Requires-Dist: jsonschema==2.6.0
11
+ Requires-Dist: simplejson==3.11.1
12
+ Requires-Dist: python-dateutil>=2.6.0
13
+ Requires-Dist: backoff==1.8.0
14
+ Requires-Dist: ciso8601
15
+ Provides-Extra: dev
16
+ Requires-Dist: pylint; extra == "dev"
17
+ Requires-Dist: ipython; extra == "dev"
18
+ Requires-Dist: ipdb; extra == "dev"
19
+ Requires-Dist: nose; extra == "dev"
20
+ Requires-Dist: singer-tools; extra == "dev"
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singer-python
3
- Version: 5.13.0
4
- Summary: Singer.io utility library
5
- Home-page: http://singer.io
6
- Author: Stitch
7
- License: UNKNOWN
8
- Description: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: Programming Language :: Python :: 3 :: Only
11
- Provides-Extra: dev
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singer-python
3
- Version: 5.13.0
4
- Summary: Singer.io utility library
5
- Home-page: http://singer.io
6
- Author: Stitch
7
- License: UNKNOWN
8
- Description: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: Programming Language :: Python :: 3 :: Only
11
- Provides-Extra: dev
File without changes
File without changes