-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (52 loc) · 1.86 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
[build-system]
requires = ["setuptools>=42", "setuptools_scm[toml]>=6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hinteval"
dependencies = ['numpy==1.26.4',
'spacy==3.7.5',
'transformers==4.44.2',
'deepeval==1.3.2',
'instructor==1.5.0',
'outlines==0.2.3',
'pydantic==2.9.1',
'datasets==2.20.0',
'prettytable==3.11.0',
'sentencepiece==0.2.0',
'torchtext==0.2.3',
'lftk==1.0.9',
'joblib==1.4.2',
'xgboost==2.1.0',
'openai==1.45.1',
'nest-asyncio==1.6.0',
'tok==0.1.14',
'rouge-score==0.1.2',
'Faker==26.0.0',
'zipfile-deflate64==0.2.0',
'sentence-transformers==3.0.1',
'accelerate==0.32.1',
'httpx==0.27.2'
]
requires-python = ">=3.10"
authors = [{ name = "Jamshid Mozafari", email = "mozafari.jamshid@gmail.com" }]
description = "A Python framework designed for both generating and evaluating hints."
license = { file = "LICENSE" }
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: GPU :: NVIDIA CUDA',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
readme = {file = ["README-PyPI.md"], content-type = "text/markdown"}
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
write_to = "hinteval/__version__.py"
[project.urls]
Documentation = "https://hinteval.readthedocs.io/"
Repository = "https://github.com/DataScienceUIBK/HintEval"