-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
58 lines (50 loc) · 1.35 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
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "nbdefense"
description = "NB Defense CLI and SDK"
version = "0.0.0"
authors = ["ProtectAI <[email protected]>"]
readme = "README.md"
packages = [{ include = "nbdefense" }]
license = "Apache License 2.0"
exclude = ["tests/*", "Makefile"]
[tool.poetry.scripts]
nbdefense = "nbdefense.cli:cli"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
click = "^8.1.3"
requirements-parser = "0.5.0"
detect-secrets = "1.4.0"
nbformat = "5.6.1"
presidio_analyzer = "2.2.29"
nbconvert = "7.0.0"
jinja2 = "^3.1.2"
requests = "2.32.2"
tqdm = "4.66.3"
rich = "12.6.0"
pandas = "^1.3.5"
tomlkit = "0.11.6"
[tool.poetry.group.test.dependencies]
pytest = "7.2.0"
pytest-watch = "4.2.0"
responses = "0.22.0"
bandit = { version = "1.7.5", extras = ["toml"] }
mypy = "1.1.1"
types-requests = "2.28.11.15"
types-tqdm = "4.65.0.0"
types-setuptools = "67.6.0.5"
[tool.poetry.group.dev.dependencies]
black = "24.3.0"
pre-commit = "2.20.0"
dunamai = "1.13.2"
en_core_web_trf = [
{ url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_trf-3.4.1/en_core_web_trf-3.4.1-py3-none-any.whl" },
]
[tool.poetry.group.prod.dependencies]
dunamai = "1.13.2"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
exclude_dirs = ["tests"]