-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.52 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "taeval"
version = "1.2.0"
description = "Text Anonymization Evaluator (TAE)"
authors = [
{ name = "Benet Manzanares-Salor", email = "benet.manzanares@urv.cat" }
]
maintainers = [
{ name = "Benet Manzanares-Salor", email = "benet.manzanares@urv.cat" }
]
keywords = ["text anonymization", "evaluation", "privacy", "utility", "nlp", "text processing", "language processing"]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch >= 2.11.0, < 3.0.0",
"transformers >= 4.42.4",
"sentence-transformers >= 2.2.2",
"accelerate >= 0.33.0",
"spacy >= 3.7.5",
"intervaltree >= 3.2.1",
"numpy >= 2.1.0",
"pandas >= 2.2.0",
"scikit-learn >= 1.5.0",
"scipy >= 1.13.0",
"tqdm >= 4.66.0",
]
[project.urls]
repository = "https://github.com/BenetManzanaresSalor/TAE"
[tool.setuptools.packages.find]
include = ["tae"]
where = ["."]
[tool.setuptools]
# This stops setuptools from adding the 'license-file' field to the metadata
license-files = []