forked from facebookresearch/PrivacyGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (77 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
91 lines (77 loc) · 1.85 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
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=34.4", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "PrivacyGuard"
description = "PrivacyGuard platform for Privacy Attacks and Analysis. Perform privacy analyses of ML models using Inference Attacks and Extraction Attacks."
authors = [{name = "Meta Platforms, Inc."}]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["PrivacyGuard", "Privacy", "Privacy Attack", "Privacy Analysis", "privacy_guard"]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"jinja2",
"pandas<3.0.0",
"scipy",
"scikit-learn",
"ipywidgets",
# Needed for compatibility with ipywidgets >= 8.0.0
"plotly>=5.12.0",
"pyre-extensions",
"sympy",
"markdown",
"pytest>=4.6",
"pytest-cov",
"pytest-timeout",
"torch",
'tqdm',
'textdistance',
'transformers>=4.57.1',
'accelerate',
'later',
'torchvision',
'matplotlib',
]
[project.optional-dependencies]
dev = [
"beautifulsoup4",
"Jinja2",
"pyfakefs",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx_rtd_theme",
"lxml",
"mdformat-myst",
]
notebook = [
]
unittest_minimal = [
]
unittest = [
"privacy-guard[dev,notebook,unittest_minimal]",
]
tutorial = [
"jupyter",
"mdformat",
]
[project.urls]
Repository = "https://github.com/facebookresearch/PrivacyGuard"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
"*" = ["*.js", "*.css", "*.html"]
#[tool.setuptools_scm]
#write_to = "privacy_guard/version.py"
#local_scheme = "node-and-date"
[tool.usort]
first_party_detection = false
[tool.ufmt]
formatter = "ruff-api"