-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (81 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "stare"
description = "Stance-Aware Re-ranking for Comparative Queries."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"click~=8.1",
"dataclasses-json~=0.6.1",
"defusedxml~=0.7.1",
"diskcache~=5.6",
"importlib-metadata~=8.0",
"ir-measures~=0.3.3",
"jupyterlab~=4.0",
"jupyter~=1.0",
"marshmallow~=3.20",
"matplotlib~=3.7",
"nltk~=3.8",
"numpy~=2.0",
"openai~=1.11",
"openpyxl~=3.1",
"pandas~=2.0",
"pingouin~=0.5.3",
"protobuf~=5.26",
"pyndeval~=0.0.3",
"python-terrier~=0.10.0",
"pyyaml~=6.0",
"ratelimit~=2.2",
"requests~=2.31",
"scikit-learn~=1.3",
"scipy~=1.11",
"seaborn~=0.13.0",
"sentencepiece~=0.2.0",
"simpletransformers~=0.70.0",
"torch~=2.0",
"tqdm~=4.66",
"transformers~=4.32",
"urllib3~=2.0",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"bandit[toml]~=1.7",
"flake8~=7.0",
"pylint~=3.0",
"pytest~=8.0",
"pytest-cov~=6.0",
]
[build-system]
requires = ["setuptools>=50", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["stare"]
namespaces = false
[tool.setuptools.package-data]
mypkg = ["*.txt", "*.md", "*.rst"]
[tool.pylint.messages_control]
disable = [
"C",
"R",
"fixme",
"logging-fstring-interpolation"
]
[tool.bandit.assert_used]
skips = ["**/test_*.py"]
[tool.pytest.ini_options]
log_cli = "True"
filterwarnings = [
"ignore::marshmallow.warnings.RemovedInMarshmallow4Warning",
]
[tool.setuptools_scm]