-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.66 KB
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
60
61
62
63
64
65
66
67
68
[project]
name = "embcli"
version = "0.1.3-dev"
description = "embcli - CLI for Embeddings"
readme = "README.md"
authors = [{ name = "Tomoko Uchida", email = "tomoko.uchida.1111@gmail.com" }]
license = { text = "Apache-2.0" }
keywords = ["cli", "llm", "nlp", "embeddings"]
classifiers = [
"Development Status :: 3 -Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Terminals",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = []
[project.urls]
"Repository" = "https://github.com/mocobeta/embcli"
[tool.uv.workspace]
members = [
"packages/embcli-core",
"packages/embcli-chroma",
"packages/embcli-openai",
"packages/embcli-gemini",
"packages/embcli-cohere",
"packages/embcli-jina",
"packages/embcli-mistral",
"packages/embcli-voyage",
"packages/embcli-sbert",
"packages/embcli-llamacpp",
"packages/embcli-clip",
]
[dependency-groups]
dev = [
"mkdocs-windmill>=1.0.5",
"pre-commit>=4.2.0",
"pyright>=1.1.401",
"pytest>=8.3.5",
"pytest-mock>=3.14.1",
"ruff>=0.11.12",
]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
select = ["F", "E", "W", "I"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true