-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (42 loc) · 1.08 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
[tool.poetry]
name = "meltanolabs-target-chromadb"
version = "0.0.1"
description = "`target-chromadb` is a Singer target for Chroma, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["AJ Steers, Meltano"]
keywords = [
"ELT",
"Chroma",
]
license = "Apache 2.0"
packages = [
{ include = "target_chromadb" },
]
[tool.poetry.dependencies]
python = "<3.12,>=3.8"
singer-sdk = { version="^0.23.0" }
fs-s3fs = { version = "^1.1.1", optional = true }
requests = "^2.32.2"
chromadb = "^0.3.21"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
flake8 = "^5.0.4"
darglint = "^1.8.1"
black = "^24.3.0"
pyupgrade = "^3.3.1"
mypy = "^1.0.0"
isort = "^5.11.5"
singer-sdk = { version="^0.23.0", extras = ["testing"] }
types-requests = "^2.28.11.12"
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "target_chromadb"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
target-chromadb = 'target_chromadb.target:TargetChroma.cli'