-
Notifications
You must be signed in to change notification settings - Fork 97
/
pyproject.toml
39 lines (35 loc) · 1.26 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
[tool.poetry]
name = "transformers-interpret"
version = "0.10.0"
description = "Model explainability that works seamlessly with 🤗 transformers. Explain your transformers model in just 2 lines of code."
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Linguistic",
]
authors = ["Charles Pierse <charlespierse@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
captum = ">=0.3.1"
transformers = ">=3.0.0"
ipython = "^7.31.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.19.0"
twine = "^4.0.1"
pytest = "^5.4.2"
black = {version = "^22.6.0", allow-prereleases = true}
pytest-cov = "^3.0.0"
jupyterlab = "^3.4.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"