-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.89 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
59
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "canonym"
version = "2024.12.03"
description = "Canonym : A Statistics Canada anonymization package"
readme = "README.rst"
requires-python = ">=3.10"
keywords = ["anonymization", "private information", "redacting", "StatCan", "Statistics Canada"]
authors = [
{email = "[email protected]", name = "Alexandre Istrate"},
{email = "[email protected]", name = "Sayema Mashhadi"}
]
maintainers = [
{email = "[email protected]", name = "Alexandre Istrate"},
{email = "[email protected]", name = "Sayema Mashhadi"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"confuse==2.0.1",
"spacy==3.4.0",
"en-core-web-lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.4.0/en_core_web_lg-3.4.0-py3-none-any.whl", # Spacy English model
"faker==33.1.0",
"fr-core-news-lg @ https://github.com/explosion/spacy-models/releases/download/fr_core_news_lg-3.4.0/fr_core_news_lg-3.4.0-py3-none-any.whl", # Spacy French model
"importlib_resources==6.4.5",
"lingua-language-detector<2.0.0",
"pandas==2.1.3",
"presidio-analyzer==2.2.29",
"presidio-anonymizer==2.2.29",
"protobuf==3.20.3",
"tqdm==4.66.1",
"torch==2.5.1",
"torchvision==0.20.1",
"torchaudio==2.5.1",
"transformers[sentencepiece]==4.46.3"
]
[tool.setuptools]
# ...
include-package-data = true
[tool.setuptools.packages.find]
where = ["src", "src/config"]
namespaces = true
[tool.setuptools.package-data]
canonym = ["config/*.yaml", "config/*.txt", "config/*.csv"]
[project.urls]
homepage = "https://github.com/StatCan/Canonym"
documentation = "https://github.com/StatCan/Canonym/blob/main/README.md"
repository = "https://github.com/StatCan/Canonym.git"