-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (45 loc) · 1.32 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
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "anonipy"
description = "The data anonymization package"
authors=[{ name = "Erik Novak" }]
maintainers = [{ name = "Erik Novak" }]
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["dependencies", "version"]
keywords = ["python", "machine learning", "natural language processing", "anonymization"]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
requires-python = ">=3.9"
[project.urls]
Source = "https://github.com/eriknovak/anonipy"
Docs = "https://eriknovak.github.io/anonipy"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"python-githooks",
"mkdocs-material",
"mkdocstrings[python]",
]
test = [
"coverage",
"nbmake",
]
all = ["anonipy[dev,test]"]
[tool.setuptools.packages.find]
where = ["."]
include = ["anonipy*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { attr = "anonipy.__version__" }