-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (61 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "fastrepl"
version = "0.0.4"
description = "Fast Run-Eval-Polish Loop for LLM App"
authors = ["yujonglee <yujonglee.dev@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
openai = "^0.27.8"
cohere = "^4.20.2"
tiktoken = "^0.4.0"
litellm = "^0.1.583"
gptcache = "^0.1.40"
evaluate = "^0.4.0"
cuid2 = "^2.0.0"
graphviz = "^0.20.1"
rich = {extras = ["jupyter"], version = "^13.5.2"}
iprogress = "^0.4"
ipywidgets = "^8.1.0"
scikit-learn = "^1.3.0"
sentence-transformers = "^2.2.2"
transformers = "^4.31.0"
torch = ">=2.0.0, !=2.0.1"
datasets = "^2.14.4"
backoff = "^2.2.1"
statsmodels = "^0.14.0"
pytest = "^7.4"
[tool.poetry.group.dev.dependencies]
pytest-xdist = "^3.3.1"
pytest-benchmark = "^4.0.0"
pytest-cov = "^4.1.0"
mypy = "^1.5.0"
black = "^23.7.0"
python-dotenv = "^1.0.0"
html2text = "^2020.1.16"
nbconvert = "^7.7.3"
ipykernel = "^6.25.2"
pre-commit = "^3.4.0"
[tool.coverage.run]
omit = ["**/__init__.py"]
[tool.coverage.report]
exclude_also = [
"import *",
"@overload",
"@abstractmethod",
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:"
]
[tool.mypy]
exclude = [".venv"]
explicit_package_bases = "True"
ignore_missing_imports = "True"
enable_incomplete_feature = "Unpack"
[tool.pytest.ini_options]
markers = ["todo"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.entry-points.pytest11]
pfastrepl = "fastrepl.pytest_plugin"