-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e297df
commit 60782c0
Showing
5 changed files
with
38 additions
and
32 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,5 +1,5 @@ | ||
# Poetry | ||
poetry.lock | ||
# uv | ||
uv.lock | ||
|
||
# Secrets and internal config files | ||
**/.secrets/* | ||
|
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,9 +1,9 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tap-dummyjson" | ||
version = "0.0.1" | ||
description = "Singer tap for DummyJSON, built with the Meltano Singer SDK." | ||
readme = "README.md" | ||
authors = ["Edgar Ramírez-Mondragón <[email protected]>"] | ||
authors = [{ name = "Edgar Ramírez-Mondragón", email = "[email protected]" }] | ||
keywords = [ | ||
"ELT", | ||
"DummyJSON", | ||
|
@@ -18,27 +18,33 @@ classifiers = [ | |
"Programming Language :: Python :: 3.13", | ||
] | ||
license = "Apache-2.0" | ||
license-files = ["LICENSE"] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"requests~=2.32.3", | ||
"singer-sdk", | ||
] | ||
optional-dependencies.s3 = [ | ||
"fs-s3fs~=1.1.1", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9" | ||
requests = "~=2.32.3" | ||
singer-sdk = {path = "../..", develop = true} | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = ">=8" | ||
singer-sdk = {path = "../..", develop = true, extras = ["testing"]} | ||
[project.scripts] | ||
# CLI declaration | ||
tap-dummyjson = 'tap_dummyjson.tap:TapDummyJSON.cli' | ||
|
||
[tool.poetry.extras] | ||
s3 = ["fs-s3fs"] | ||
[dependency-groups] | ||
dev = [ | ||
"pytest>=8", | ||
"singer-sdk[testing]", | ||
] | ||
|
||
[tool.mypy] | ||
python_version = "3.12" | ||
warn_unused_configs = true | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
[tool.uv.sources] | ||
singer-sdk = { path = "../../", editable = true } | ||
|
||
[tool.poetry.scripts] | ||
# CLI declaration | ||
tap-dummyjson = 'tap_dummyjson.tap:TapDummyJSON.cli' | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |