singer-python 5.12.2__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.12.2 → singer_python-5.13.1}/setup.cfg +1 -1
  3. {singer-python-5.12.2 → singer_python-5.13.1}/setup.py +1 -1
  4. {singer-python-5.12.2 → singer_python-5.13.1}/singer/utils.py +6 -0
  5. singer_python-5.13.1/singer_python.egg-info/PKG-INFO +20 -0
  6. singer-python-5.12.2/PKG-INFO +0 -11
  7. singer-python-5.12.2/singer_python.egg-info/PKG-INFO +0 -11
  8. {singer-python-5.12.2 → singer_python-5.13.1}/LICENSE +0 -0
  9. {singer-python-5.12.2 → singer_python-5.13.1}/README.md +0 -0
  10. {singer-python-5.12.2 → singer_python-5.13.1}/singer/__init__.py +0 -0
  11. {singer-python-5.12.2 → singer_python-5.13.1}/singer/bookmarks.py +0 -0
  12. {singer-python-5.12.2 → singer_python-5.13.1}/singer/catalog.py +0 -0
  13. {singer-python-5.12.2 → singer_python-5.13.1}/singer/exceptions.py +0 -0
  14. {singer-python-5.12.2 → singer_python-5.13.1}/singer/logger.py +0 -0
  15. {singer-python-5.12.2 → singer_python-5.13.1}/singer/logging.conf +0 -0
  16. {singer-python-5.12.2 → singer_python-5.13.1}/singer/messages.py +0 -0
  17. {singer-python-5.12.2 → singer_python-5.13.1}/singer/metadata.py +0 -0
  18. {singer-python-5.12.2 → singer_python-5.13.1}/singer/metrics.py +0 -0
  19. {singer-python-5.12.2 → singer_python-5.13.1}/singer/requests.py +0 -0
  20. {singer-python-5.12.2 → singer_python-5.13.1}/singer/schema.py +0 -0
  21. {singer-python-5.12.2 → singer_python-5.13.1}/singer/statediff.py +0 -0
  22. {singer-python-5.12.2 → singer_python-5.13.1}/singer/transform.py +0 -0
  23. {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/SOURCES.txt +0 -0
  24. {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/dependency_links.txt +0 -0
  25. {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/requires.txt +0 -0
  26. {singer-python-5.12.2 → singer_python-5.13.1}/singer_python.egg-info/top_level.txt +0 -0
  27. {singer-python-5.12.2 → singer_python-5.13.1}/tests/__init__.py +0 -0
  28. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_bookmarks.py +0 -0
  29. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_catalog.py +0 -0
  30. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_exceptions.py +0 -0
  31. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_metadata.py +0 -0
  32. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_metrics.py +0 -0
  33. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_schema.py +0 -0
  34. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_singer.py +0 -0
  35. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_statediff.py +0 -0
  36. {singer-python-5.12.2 → singer_python-5.13.1}/tests/test_transform.py +0 -0
  37. {singer-python-5.12.2 → 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.12.2',
7
+ version='5.13.1',
8
8
  description="Singer.io utility library",
9
9
  author="Stitch",
10
10
  classifiers=['Programming Language :: Python :: 3 :: Only'],
@@ -134,6 +134,7 @@ def parse_args(required_config_keys):
134
134
  -d,--discover Run in discover mode
135
135
  -p,--properties Properties file: DEPRECATED, please use --catalog instead
136
136
  --catalog Catalog file
137
+ --dev Runs the tap in dev mode
137
138
 
138
139
  Returns the parsed args object from argparse. For each argument that
139
140
  point to JSON files (config, state, properties), we will automatically
@@ -163,6 +164,11 @@ def parse_args(required_config_keys):
163
164
  action='store_true',
164
165
  help='Do schema discovery')
165
166
 
167
+ parser.add_argument(
168
+ '--dev',
169
+ action='store_true',
170
+ help='Runs tap in dev mode')
171
+
166
172
  args = parser.parse_args()
167
173
  if args.config:
168
174
  setattr(args, 'config_path', args.config)
@@ -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.12.2
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.12.2
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