-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cdpg-anonkit"
version = "0.1.2.1"
description = "A toolkit for anonymisation of data"
readme = "README.md"
authors = [{ name = "Novoneel Chakraborty", email = "[email protected]" }]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
requires-python = ">=3.10.12"
dependencies = [
"h3 >=4.1.2",
"numpy >=2.1.2",
"pandas >=2.2.3",
"pytest >=8.3.3",
"python-dateutil >=2.9.0",
"typing_extensions >=4.12.2"
]
[project.urls]
Homepage = "https://novoneel-iudx.github.io/differential-privacy-toolkit/index.htmlt"
Repository = "https://github.com/novoneel-iudx/differential-privacy-toolkit"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[options.optional-dependencies]
dev = [
"pytest>=7.0"
]