-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61.2.0", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "langchain-provider"
version = "0.3.0.dev0"
description = "Langchain based completions provider for Spyder"
authors = [
{name = "Spyder Project Contributors", email = "spyder.python@gmail.com"},
]
license = {text = "MIT license"}
dependencies = [
"langchain-core>=1.2.14,<1.3",
"langchain-community>=0.4.1,<1.0",
"openai>=2.21.0,<3.0",
"pydantic>=2.12.5",
"qtawesome",
"qtpy",
"spyder>=6.1.0"
]
requires-python = ">= 3.9"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
]
[project.optional-dependencies]
extras = ["pre-commit"]
[project.urls]
Homepage = "https://github.com/spyder-ide/langchain-provider"
[project.entry-points."spyder.completions"]
langchain = "langchain_provider.provider:LangchainProvider"