-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (34 loc) · 968 Bytes
/
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
[tool.poetry]
name = "NheLPer"
version = "0.1.0"
description = "🧪 Behavioral tests for NLP models 🧪"
authors = ["JulesBelveze <[email protected]>"]
license = "LICENSE"
homepage = "https://github.com/JulesBelveze/nhelper"
repository = "https://github.com/JulesBelveze/nhelper"
readme = "README.md"
keywords = ["nlp", "behavioral testing", "test"]
classifiers = [
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing"
]
include = [
"LICENSE",
"figures/"
]
[tool.poetry.dependencies]
python = "^3.8"
transformers = "^4.18.0"
torch = "^1.11.0"
tabulate = "^0.8.10"
tokenizers = "^0.11.1"
pydantic = "<1.8.0"
sentencepiece = ">=0.1.96"
overrides = "^6.1.0"
pytorch-lightning = { version = "^1.6.4", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"