update pyproject.toml
Browse files- pyproject.toml +9 -9
pyproject.toml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
name = "llmdataparser"
|
3 |
version = "0.1.0"
|
4 |
description = "A collection of parsers for LLM benchmark datasets like MMLU, MMLU-Pro, GSM8k, and more."
|
5 |
-
authors = ["Jeff <[email protected]>"]
|
6 |
license = "MIT"
|
7 |
readme = "README.md"
|
8 |
homepage = "https://github.com/jeff52415/LLMDataParser"
|
@@ -13,7 +13,7 @@ classifiers = [
|
|
13 |
"License :: OSI Approved :: MIT License",
|
14 |
"Operating System :: OS Independent",
|
15 |
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
16 |
-
"Intended Audience :: Developers"
|
17 |
]
|
18 |
|
19 |
[tool.poetry.dependencies]
|
@@ -22,11 +22,9 @@ pandas = "^2.0.3"
|
|
22 |
datasets = "^2.14.4"
|
23 |
typing-extensions = "^4.8.0"
|
24 |
|
25 |
-
|
26 |
-
|
27 |
[tool.poetry.group.dev.dependencies]
|
28 |
pytest = "^7.4.0"
|
29 |
-
black = {version = "^23.9.1", allow-prereleases = true}
|
30 |
flake8 = "^6.1.0"
|
31 |
isort = "^5.12.0"
|
32 |
mypy = "^1.5.1"
|
@@ -51,10 +49,12 @@ profile = "black"
|
|
51 |
line_length = 88
|
52 |
known_first_party = ["llmdataparser"]
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
[build-system]
|
55 |
requires = ["poetry-core>=1.5.0"]
|
56 |
build-backend = "poetry.core.masonry.api"
|
57 |
-
|
58 |
-
[tool.flake8]
|
59 |
-
max-line-length = 88
|
60 |
-
ignore = ["E501"]
|
|
|
2 |
name = "llmdataparser"
|
3 |
version = "0.1.0"
|
4 |
description = "A collection of parsers for LLM benchmark datasets like MMLU, MMLU-Pro, GSM8k, and more."
|
5 |
+
authors = ["Jeff Yang <[email protected]>"]
|
6 |
license = "MIT"
|
7 |
readme = "README.md"
|
8 |
homepage = "https://github.com/jeff52415/LLMDataParser"
|
|
|
13 |
"License :: OSI Approved :: MIT License",
|
14 |
"Operating System :: OS Independent",
|
15 |
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
16 |
+
"Intended Audience :: Developers"
|
17 |
]
|
18 |
|
19 |
[tool.poetry.dependencies]
|
|
|
22 |
datasets = "^2.14.4"
|
23 |
typing-extensions = "^4.8.0"
|
24 |
|
|
|
|
|
25 |
[tool.poetry.group.dev.dependencies]
|
26 |
pytest = "^7.4.0"
|
27 |
+
black = { version = "^23.9.1", allow-prereleases = true }
|
28 |
flake8 = "^6.1.0"
|
29 |
isort = "^5.12.0"
|
30 |
mypy = "^1.5.1"
|
|
|
49 |
line_length = 88
|
50 |
known_first_party = ["llmdataparser"]
|
51 |
|
52 |
+
[tool.flake8]
|
53 |
+
max-line-length = 88
|
54 |
+
ignore = [
|
55 |
+
"E501" # Line too long
|
56 |
+
]
|
57 |
+
|
58 |
[build-system]
|
59 |
requires = ["poetry-core>=1.5.0"]
|
60 |
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|