-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (32 loc) · 1.09 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
[tool.poetry]
name = "pii_anonymizer"
version = "0.2.5"
description = "Data Protection Framework is a python library/command line application for identification, anonymization and de-anonymization of Personally Identifiable Information data."
authors = ["Thoughtworks <thoughtworks@thoughtworks.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pyspark = "~3.3.0"
pandas = "^1.5.0"
fastparquet = "^2022.11.0"
dask = {extras = ["dataframe"], version = "^2022.11.1"}
cryptography = "^38.0.4"
[tool.poetry.group.dev.dependencies]
bumpver = "^2022.1119"
coverage = "^6.5.0"
freezegun = "^1.2.2"
Faker = "^15.3.1"
black = {version = "^22.10.0", allow-prereleases = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "0.2.5"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']