-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (35 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/secretaries"]
[project]
name = "secretaries"
version = "0.0.1.12"
license = "MIT"
authors = [
{ name="Erik Broman", email="mikroberna@gmail.com" },
]
description = "A utility for removing personal data in text."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
'Polars >= 0.19.2',
'Transformers >= 4.33.1',
'torch >= 1.13.1',
'NLTK >= 3.8.1',
'importlib-resources >= 6.1.0'
]
keywords = ['python', 'gdpr', 'anonymization', 'personal data', 'personuppgifter']
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: Swedish",
"Natural Language :: English",
]
[project.urls]
"Homepage" = "https://github.com/er1kb/secretaries"
"Bug Tracker" = "https://github.com/er1kb/secretaries/issues"