-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.2 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
54
[tool.poetry]
name = "llm-eval"
version = "0.1.0"
description = "This project will help in evaluating LLMs"
authors = ["srini-x <[email protected]>"]
readme = "README.md"
packages = [{ include = "llm_eval" }]
[tool.poetry.dependencies]
python = "^3.10"
loguru = "^0.7.0"
psycopg = { extras = ["binary"], version = "^3.1.9" }
emoji = "^2.2.0"
h2o-wave = "^0.26.1"
jupyterlab = "^4.0.3"
ipywidgets = "^8.0.7"
[tool.poetry.group.dev.dependencies]
pytest = { version = "^7.3.2", allow-prereleases = true }
pylint = { version = "^3.0.0a6", allow-prereleases = true }
flake8 = { version = "^6.0.0", allow-prereleases = true }
black = { extras = ["d"], version = "^23.3.0", allow-prereleases = true }
[tool.black]
line-length = 88
skip-string-normalization = false
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| notebooks
| local
)
'''
[tool.isort]
line_length = 88
multi_line_output = 3
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"