-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 947 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ipylangchat"
version = "0.0.2"
description = "Serverless chat UI Jupyter widget for langchain conversational AIs"
license = {text = "MIT"}
authors = [
{name = "Nezar Abdennur", email = "[email protected]"},
]
dependencies = ["anywidget", "langchain_core"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"watchfiles",
"jupyterlab",
"langchain",
"langchain-chroma",
"langchain-community",
"langchain-huggingface",
"langchain-openai",
"langchain-text-splitters",
]
[project.urls]
Homepage = "https://github.com/abdenlab/ipylangchat"
# automatically add the dev feature to the default env (e.g., hatch shell)
[tool.hatch.envs.default]
features = ["dev"]