-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (63 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (63 loc) · 2.07 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "trasgoDP"
version = "2.0.3"
description = "Local differential privacy mechanisms"
authors = [
"Judith Sáinz-Pardo Díaz <sainzpardo@ifca.unican.es>",
"Álvaro López García <aloga@ifca.unican.es>"
]
maintainers = ["Judith Sáinz-Pardo Díaz <sainzpardo@ifca.unican.es>"]
license = "Apache License 2.0"
readme = "README.md"
repository = "https://github.com/FCA-Advanced-Computing/trasgoDP"
keywords = ["data", "privacy", "differential-privacy"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Security"
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "2.0.2"
pandas = "2.3.3"
scipy = "1.15.3"
typing_extensions = "4.16.0"
folium = "0.20.0"
[tool.poetry.group.dev.dependencies]
tox = "4.55.1"
[tool.poetry.group.test.dependencies]
pytest = ">=7.1.2,<10.0.0"
pytest-cov = ">=4,<8"
[tool.poetry.group.test-flake8.dependencies]
flake8 = ">=4,<8"
flake8-bugbear = ">=22.3,<26.0"
flake8-docstrings = "^1.6"
flake8-typing-imports = "^1.12"
flake8-colors = "^0.1"
pep8-naming = ">=0.12,<0.16"
pydocstyle = "^6.1"
[tool.poetry.group.test-black.dependencies]
black = ">=22.3,<27.0"
[tool.poetry.group.test-bandit.dependencies]
bandit = "1.9.4"
[tool.poetry.group.test-pip-missing-reqs.dependencies]
pip-check-reqs = ">=2.5.3,<4.0.0"
[tool.poetry.group.test-mypy.dependencies]
mypy = "2.3.1"
[tool.poetry.group.test-pypi.dependencies]
twine = ">=4.0.2,<8.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"