-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.34 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
52
53
[tool.poetry]
authors = ["alex-treebeard <[email protected]>"]
description = ""
homepage = "https://github.com/treebeardtech/nbwrite"
license = "Apache-2.0"
name = "nbwrite"
packages = [
{include = "nbwrite", from = "src"},
]
readme = "README.md"
version = "v0.2"
[tool.poetry.scripts]
nbwrite = "nbwrite.cli:cli"
[tool.poetry.dependencies]
pytest = ">=6.1.0"
python = ">=3.8.1,<3.12"
openai = {optional = true, extras = ["embeddings"], version = "^0.28.1"}
pathlib = "^1.0.1"
click = "^8.1.7"
langchain = {version = "^0.0.312", extras = ["openai"]}
nbformat = "^5.9.2"
chromadb = {optional = true, version = "^0.4.14"}
pysqlite3-binary = {optional = true, version = "^0.5.2", markers = "sys_platform == 'linux'"}
arize-phoenix = {optional = true, extras = ["experimental"], version = "^0.0.49"}
python-dotenv = "^1.0.0"
pyyaml = "^6.0.1"
rich = "^13.6.0"
[tool.poetry.extras]
tracing = ["arize-phoenix"]
rag = ["chromadb", "pysqlite3-binary", "openai"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.0"
pre-commit = "^2.8.2"
pytest-cov = "^2.10.1"
pytest-xdist = "^2.1.0"
virtualenv = "^20.1.0"
setuptools = ">65.0.0"
typing-extensions = "^4.7.1"
nbmake = "^1.4.5"
pytest-dotenv = "^0.5.2"
[tool.poetry.group.dev.dependencies]
gradio = "^3.49.0"
twine = "^4.0.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["setuptools", "poetry-core>=1.0.0"]