airbyte-source-hardcoded-records 0.0.41__tar.gz → 0.0.43__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.
@@ -1,10 +1,11 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: airbyte-source-hardcoded-records
3
- Version: 0.0.41
3
+ Version: 0.0.43
4
4
  Summary: Source implementation for hardcoded records.
5
+ Home-page: https://airbyte.com
5
6
  License: MIT
6
7
  Author: Airbyte
7
- Author-email: contact@airbyte.io
8
+ Author-email: evan@airbyte.io
8
9
  Requires-Python: >=3.11,<3.13
9
10
  Classifier: License :: OSI Approved :: MIT License
10
11
  Classifier: Programming Language :: Python :: 3
@@ -12,7 +13,6 @@ Classifier: Programming Language :: Python :: 3.11
12
13
  Classifier: Programming Language :: Python :: 3.12
13
14
  Requires-Dist: airbyte-cdk (==6.46.0)
14
15
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/hardcoded-records
15
- Project-URL: Homepage, https://airbyte.com
16
16
  Project-URL: Repository, https://github.com/airbytehq/airbyte
17
17
  Description-Content-Type: text/markdown
18
18
 
@@ -1,24 +1,19 @@
1
1
  [build-system]
2
- requires = [
3
- "poetry-core>=1.0.0",
4
- ]
2
+ requires = [ "poetry-core>=1.0.0",]
5
3
  build-backend = "poetry.core.masonry.api"
6
4
 
7
5
  [tool.poetry]
8
- version = "0.0.41"
6
+ version = "0.0.43"
9
7
  name = "airbyte-source-hardcoded-records"
10
8
  description = "Source implementation for hardcoded records."
11
- authors = [
12
- "Airbyte <contact@airbyte.io>",
13
- ]
9
+ authors = [ "Airbyte <evan@airbyte.io>",]
14
10
  license = "MIT"
15
11
  readme = "README.md"
16
12
  documentation = "https://docs.airbyte.com/integrations/sources/hardcoded-records"
17
13
  homepage = "https://airbyte.com"
18
14
  repository = "https://github.com/airbytehq/airbyte"
19
- packages = [
20
- { include = "source_hardcoded_records" },
21
- ]
15
+ [[tool.poetry.packages]]
16
+ include = "source_hardcoded_records"
22
17
 
23
18
  [tool.poetry.dependencies]
24
19
  python = "^3.11,<3.13"
@@ -33,7 +28,10 @@ ruff = "^0.11.5"
33
28
  pytest = "^8.0.0"
34
29
  pytest-mock = "^3.6.1"
35
30
 
31
+
36
32
  [tool.poe]
37
33
  include = [
34
+ # Shared tasks definition file(s) can be imported here.
35
+ # Run `poe` or `poe --help` to see the list of available tasks.
38
36
  "${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml",
39
37
  ]