We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ab089 commit 8f0e49eCopy full SHA for 8f0e49e
Makefile
@@ -28,3 +28,7 @@ test:
28
29
coverage:
30
pytest --cov src
31
+
32
+publish/pypi:
33
+ python3 -m build && \
34
+ python3 -m twine upload --repository pypi dist/*
pyproject.toml
@@ -38,6 +38,7 @@ llm_http_api = "llm_http_api"
38
39
[project.optional-dependencies]
40
test = [
41
+ "build >=1.0.3",
42
"httpx >=0.25.2",
43
"llm-clip >=0.1",
44
"llm-embed-jina >=0.1.2",
@@ -49,6 +50,7 @@ test = [
49
50
"pytest ~=7.4.0",
51
"pytest-cov ~=4.1.0",
52
"ruff ~=0.1.0",
53
+ "twine >=4.0.2",
54
]
55
56
[tool.ruff]
0 commit comments