-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.66 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling>=1.4.0", "jupyterlab~=4.0"]
build-backend = "hatchling.build"
[project]
name = "nebari_jupyter_ai"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 4",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
version = "2.29.0"
description = "A Jupyter AI extension."
authors = [
{ name = "Quansight" },
]
dependencies = ["jupyter_ai", "langchain-openai"] # ==2.29.0", "pydantic==2.7", "jupyter_server==2.15.0"]
[project.optional-dependencies]
test = ["coverage", "pytest", "pytest-asyncio", "pytest-cov"]
[project.entry-points."jupyter_ai.model_providers"]
nebari-chat = "nebari_jupyter_ai.provider:NebariChatProvider"
[project.entry-points."jupyter_ai.embeddings_model_providers"]
# my-provider = "my_provider:MyEmbeddingsProvider"
nebari-embeddings = "nebari_jupyter_ai.provider:NebariEmbeddingsProvider"
# [project.entry-points."jupyter_ai.chat_handlers"]
# test-slash-command = "nebari_jupyter_ai.slash_command:TestSlashCommand"
[tool.hatch.build.hooks.version]
path = "nebari_jupyter_ai/_version.py"
# auto install extension
[tool.hatch.build.targets.wheel.shared-data]
"jupyter-config/server-config" = "etc/jupyter/jupyter_server_config.d"
[tool.check-wheel-contents]
ignore = ["W002"]