-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
55 lines (49 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "japanese-llm-ranking"
version = "0.0.1"
authors = [{name="Sam Passaglia"}]
description = "An open benchmarking suite for Japanese large language models."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/yuzuai/japanese-llm-ranking"
"Bug Tracker" = "https://github.com/yuzuai/japanese-llm-ranking/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
# iSort
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
# virtual_env = "venv"
# Black formatting
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
.eggs # exclude a few common directories
| .git # in the root of the project
| .hg
| .mypy_cache
| .tox
| venv
| data
| jobs
| checkpoints
| _build
| buck-out
| build
| dist
)/
'''