├── .github └── pull_request_template.md ├── LICENSE ├── README.md ├── cookiecutter.json └── {{cookiecutter.project_name}} ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── sample_config.json ├── setup.cfg ├── setup.py └── {{cookiecutter.package_name}} └── __init__.py /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/{{cookiecutter.project_name}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/{{cookiecutter.project_name}}/LICENSE -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/{{cookiecutter.project_name}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/{{cookiecutter.project_name}}/sample_config.json -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/{{cookiecutter.project_name}}/setup.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singer-io/singer-target-template/HEAD/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__init__.py --------------------------------------------------------------------------------