singer-python 6.1.0__tar.gz → 6.1.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-6.1.1/PKG-INFO +20 -0
  2. {singer-python-6.1.0 → singer_python-6.1.1}/setup.cfg +1 -1
  3. {singer-python-6.1.0 → singer_python-6.1.1}/setup.py +1 -1
  4. {singer-python-6.1.0 → singer_python-6.1.1}/singer/catalog.py +1 -0
  5. {singer-python-6.1.0 → singer_python-6.1.1}/singer/schema.py +1 -1
  6. singer_python-6.1.1/singer_python.egg-info/PKG-INFO +20 -0
  7. singer-python-6.1.0/PKG-INFO +0 -9
  8. singer-python-6.1.0/singer_python.egg-info/PKG-INFO +0 -9
  9. {singer-python-6.1.0 → singer_python-6.1.1}/LICENSE +0 -0
  10. {singer-python-6.1.0 → singer_python-6.1.1}/README.md +0 -0
  11. {singer-python-6.1.0 → singer_python-6.1.1}/singer/__init__.py +0 -0
  12. {singer-python-6.1.0 → singer_python-6.1.1}/singer/bookmarks.py +0 -0
  13. {singer-python-6.1.0 → singer_python-6.1.1}/singer/exceptions.py +0 -0
  14. {singer-python-6.1.0 → singer_python-6.1.1}/singer/logger.py +0 -0
  15. {singer-python-6.1.0 → singer_python-6.1.1}/singer/logging.conf +0 -0
  16. {singer-python-6.1.0 → singer_python-6.1.1}/singer/messages.py +0 -0
  17. {singer-python-6.1.0 → singer_python-6.1.1}/singer/metadata.py +0 -0
  18. {singer-python-6.1.0 → singer_python-6.1.1}/singer/metrics.py +0 -0
  19. {singer-python-6.1.0 → singer_python-6.1.1}/singer/requests.py +0 -0
  20. {singer-python-6.1.0 → singer_python-6.1.1}/singer/statediff.py +0 -0
  21. {singer-python-6.1.0 → singer_python-6.1.1}/singer/transform.py +0 -0
  22. {singer-python-6.1.0 → singer_python-6.1.1}/singer/utils.py +0 -0
  23. {singer-python-6.1.0 → singer_python-6.1.1}/singer_python.egg-info/SOURCES.txt +0 -0
  24. {singer-python-6.1.0 → singer_python-6.1.1}/singer_python.egg-info/dependency_links.txt +0 -0
  25. {singer-python-6.1.0 → singer_python-6.1.1}/singer_python.egg-info/requires.txt +0 -0
  26. {singer-python-6.1.0 → singer_python-6.1.1}/singer_python.egg-info/top_level.txt +0 -0
  27. {singer-python-6.1.0 → singer_python-6.1.1}/tests/__init__.py +0 -0
  28. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_bookmarks.py +0 -0
  29. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_catalog.py +0 -0
  30. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_exceptions.py +0 -0
  31. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_metadata.py +0 -0
  32. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_metrics.py +0 -0
  33. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_schema.py +0 -0
  34. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_singer.py +0 -0
  35. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_statediff.py +0 -0
  36. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_transform.py +0 -0
  37. {singer-python-6.1.0 → singer_python-6.1.1}/tests/test_utils.py +0 -0
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.1
2
+ Name: singer-python
3
+ Version: 6.1.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.*,>=2.6.0
11
+ Requires-Dist: simplejson==3.*,>=3.13.2
12
+ Requires-Dist: python-dateutil==2.*,>=2.7.3
13
+ Requires-Dist: backoff==2.*,>=2.2.1
14
+ Requires-Dist: ciso8601==2.*,>=2.3.1
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='6.1.0',
7
+ version='6.1.1',
8
8
  description="Singer.io utility library",
9
9
  author="Stitch",
10
10
  classifiers=['Programming Language :: Python :: 3 :: Only'],
@@ -20,6 +20,7 @@ def write_catalog(catalog):
20
20
  # pylint: disable=too-many-instance-attributes
21
21
  class CatalogEntry():
22
22
 
23
+ # pylint: disable=too-many-positional-arguments
23
24
  def __init__(self, tap_stream_id=None, stream=None,
24
25
  key_properties=None, schema=None, replication_key=None,
25
26
  is_view=None, database=None, table=None, row_count=None,
@@ -31,7 +31,7 @@ class Schema(): # pylint: disable=too-many-instance-attributes
31
31
 
32
32
  '''
33
33
 
34
- # pylint: disable=too-many-locals
34
+ # pylint: disable=too-many-locals,too-many-positional-arguments
35
35
  def __init__(self, type=None, format=None, properties=None, items=None,
36
36
  selected=None, inclusion=None, description=None, minimum=None,
37
37
  maximum=None, exclusiveMinimum=None, exclusiveMaximum=None,
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.1
2
+ Name: singer-python
3
+ Version: 6.1.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.*,>=2.6.0
11
+ Requires-Dist: simplejson==3.*,>=3.13.2
12
+ Requires-Dist: python-dateutil==2.*,>=2.7.3
13
+ Requires-Dist: backoff==2.*,>=2.2.1
14
+ Requires-Dist: ciso8601==2.*,>=2.3.1
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,9 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singer-python
3
- Version: 6.1.0
4
- Summary: Singer.io utility library
5
- Home-page: http://singer.io
6
- Author: Stitch
7
- Classifier: Programming Language :: Python :: 3 :: Only
8
- Provides-Extra: dev
9
- License-File: LICENSE
@@ -1,9 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singer-python
3
- Version: 6.1.0
4
- Summary: Singer.io utility library
5
- Home-page: http://singer.io
6
- Author: Stitch
7
- Classifier: Programming Language :: Python :: 3 :: Only
8
- Provides-Extra: dev
9
- License-File: LICENSE
File without changes
File without changes