-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix json validator path * Version 3.0.0 and changelog * Include new schemas path
- Loading branch information
Showing
4 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include LICENSE | ||
include tap_mambu/schemas/*.json | ||
include tap_mambu/helpers/schemas/*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
from setuptools import setup, find_packages | ||
|
||
setup(name='tap-mambu', | ||
version='2.5.2', | ||
version='3.0.0', | ||
description='Singer.io tap for extracting data from the Mambu 2.0 API', | ||
author='[email protected]', | ||
classifiers=['Programming Language :: Python :: 3 :: Only'], | ||
|
@@ -33,6 +33,6 @@ | |
packages=find_packages(), | ||
package_data={ | ||
'tap_mambu': [ | ||
'schemas/*.json' | ||
'helpers/schemas/*.json' | ||
] | ||
}) |