-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.43 KB
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
55
56
57
58
59
[tool.poetry]
name = "insight_eval"
version = "0.1.2"
description = "Open source repo for the insight-discovery benchmarking evaluation framework"
authors = ["Sparkbeyond <support@sparkbeyond.com>"]
homepage = "https://www.sparkbeyond.ai/"
repository = "https://github.com/SparkBeyond/insight-eval"
license = "Apache-2.0"
readme = "README.md"
include = [
"insight_eval/batch_scripts/*.py",
"insight_eval/batch_scripts/data/agents_solutions/**",
"insight_eval/batch_scripts/data/problems/**",
"insight_eval/core_classes/**",
"insight_eval/evaluation_framework/**",
"insight_eval/readers/**",
"insight_eval/reports/**",
"insight_eval/*.py"
]
[tool.poetry.dependencies]
python = "^3.12.1"
numpy = "2.0.1"
pandas = "2.2.2"
scikit-learn = "1.5.1"
natsort = "8.4.0"
scipy = "1.13.0"
attrs = "^24.1.0"
cattrs = "^24.1.0"
# unidecode is currently commented out in requirements.txt; add below if needed
# unidecode = "1.3.8"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mypy = "^1.0"
scipy-stubs = "^1.15"
pandas-stubs = "2.3.0.250703"
types_openpyxl = "^3.1.5"
types-python-dateutil = "^2.9.0"
pytest = "8.4.1"
[tool.mypy]
python_version = 3.12
strict = true
ignore_missing_imports = false
mypy_path = ["./stubs"]
[tools.poetry.urls]
"Bug Tracker" = "https://github.com/SparkBeyond/insight-eval/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"