-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
38 lines (31 loc) · 954 Bytes
/
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
[tool.poetry]
name = "langchain-llm-api"
version = "0.0.1"
description = "Wrappers around LLM API models and embeddings clients."
authors = ["1b5d <[email protected]>"]
homepage = "https://github.com/1b5d/langchain-llm-api"
readme = "README.md"
license = "MIT"
repository = "https://github.com/1b5d/langchain-llm-api"
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.28"
langchain = "^0.0"
sseclient-py = "^1.7"
pydantic = "^1.10"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20"
black = "^23.3"
scriv = "^1.2"
[tool.black]
line-length = 80
[tool.mypy]
ignore_missing_imports = true
[tool.scriv]
format = "md"
[tool.pylint]
init-hook = 'from pylint.config import find_default_config_files; import os, sys; sys.path.append(os.path.dirname(next(find_default_config_files())))'
disable = ["C0103", "R0913", "R0903", "R0902"]
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"