-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 843 Bytes
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
[tool.poetry]
name = "nerpii"
version = "0.2.4"
description = "A python library to perform NER on structured data and generate PII with Faker"
authors = ["Clearbox AI <info@clearbox.ai>"]
license = "GPL"
readme = "README.md"
homepage = "https://github.com/Clearbox-AI/nerpii"
repository = "https://github.com/Clearbox-AI/nerpii"
packages = [{include = "nerpii"}]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^1.5.3"
presidio-analyzer = "^2.2.32"
transformers = "^4.26.1"
faker = "^17.3.0"
gender-guesser = "^0.4.0"
simple-colors = "^0.1.5"
spacy = ">=3.5.0"
torch = ">=1.13.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.21.1"
pytest = "^7.2.1"
flake8 = "^6.0.0"
flake8-import-order = "^0.18.2"
flake8-black = "^0.3.6"
black = "^23.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"