-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.45 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lm_polygraph"
version = "0.0.0"
authors = [
{ name = "List of contributors: https://github.com/IINemo/lm-polygraph/graphs/contributors", email = "[email protected]" },
]
description = "Uncertainty Estimation Toolkit for Transformer Language Models"
readme = "README.md"
keywords=["NLP", "deep learning", "transformer", "pytorch", "uncertainty estimation"]
license = {file = "LICENSE.md"}
requires-python = ">=3.10"
dynamic = ["dependencies"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
"Homepage" = "https://github.com/IINemo/lm-polygraph"
"Bug Tracker" = "https://github.com/IINemo/lm-polygraph/issues"
"Repository" = "https://github.com/IINemo/lm-polygraph"
"Documentation" = "https://lm-polygraph.readthedocs.io"
[tool.setuptools]
script-files = [
"scripts/polygraph_eval",
"scripts/polygraph_eval_ood",
"scripts/polygraph_server",
"scripts/polygraph_normalize",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}