-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (42 loc) · 1.3 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
[tool.black]
line-length = 100
[tool.isort]
known_first_party = ["poly_bench_evaluation"]
# required for compatibility with black:
profile = "black"
# To maintain consistency with other settings
line_length = 100
[tool.mypy]
# See https://mypy.readthedocs.io/en/latest/config_file.html for more mypy options.
# Enables the type-checker on the interior of functions without type annotations.
check_untyped_defs = true
# Displaying specific error codes makes it easier to silence specific errors
# See also https://mypy.readthedocs.io/en/latest/error_codes.html
show_error_codes = true
# Show source code snippets and location markers in error messages
pretty = true
# Suppresses errors about packages which do not implement type-hint sharing.
# See also https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports.
ignore_missing_imports = true
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "poly_bench_evaluation"
version = "0.1.0"
description = "PolyBench Evaluation"
requires-python = ">=3.10"
dependencies = [
"docker",
"pandas",
"loguru",
"boto3",
"pydantic",
"GitPython",
"tree-sitter-languages==1.10.2",
"tree-sitter==0.21.3",
"scikit-learn==1.3.2",
"unidiff",
"whatthepatch",
"datasets"
]