-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1013 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1013 Bytes
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
[tool.poetry]
name = "evaluation_function"
version = "0.0.1"
description = "short answer questions Evaluation Function"
authors = ["neagualexa <ngu.alexandra@gmail.com>"]
readme = "README.md"
packages = [{ include = "evaluation_function" }]
[tool.poetry.scripts]
evaluation_function = "evaluation_function.main:main"
evaluation_function_dev = "evaluation_function.dev:dev"
[tool.poetry.dependencies]
python = "^3.11"
typing_extensions = "^4.12.2"
numpy = "^1.26.4"
nltk = "3.8.1"
gensim = "^4.3.3"
matplotlib = "^3.9.2"
certifi = "^2024.8.30"
requests = "^2.32.3"
urllib3 = "^2.2.3"
idna = "^3.10"
gpt4all = "^2.8.2"
lf_toolkit = { git = "https://github.com/lambda-feedback/toolkit-python.git", branch = "main", extras = [
"parsing",
"ipc",
] }
jsonschema = "^4.23.0"
evaluation-function-utils = "^0.1.3"
black = "^24.10.0"
autopep8 = "^2.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
flake8 = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"