-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.25 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "meltanolabs-target-pinecone"
version = "0.0.0"
description = "`target-pinecone` is a Singer target for Pinecone, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["Pat Nadolny"]
keywords = [
"ELT",
"Pinecone",
]
license = "ELv2"
packages = [
{ include = "target_pinecone" }
]
[tool.poetry.dependencies]
fs-s3fs = { version = "^1.1.1", optional = true }
pinecone-client = "^2.2.4"
python = "<3.12,>=3.8"
requests = "^2.31.0"
singer-sdk = "~=0.32.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
singer-sdk = { version="~=0.32.0", extras = ["testing"] }
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[tool.ruff]
ignore = [
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
]
select = ["ALL"]
src = ["target_pinecone"]
target-version = "py37"
[tool.ruff.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.isort]
known-first-party = ["target_pinecone"]
[tool.ruff.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core>=1.0.8", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
target-pinecone = 'target_pinecone.target:TargetPinecone.cli'
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"