-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
76 lines (71 loc) · 1.69 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "private-evolution"
version = "0.0.1"
maintainers = [{ name = "Zinan Lin", email = "zinanlin@microsoft.com" }]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
readme = "README.md"
description = "Differentially private synthetic data via foundation model inference APIs."
dependencies = [
"matplotlib",
"clean-fid",
"omegaconf",
"pandas",
"scikit-learn",
"generalimport",
"fld@git+https://github.com/marcojira/fld.git",
"openai",
"tenacity",
]
[project.optional-dependencies]
dev = ["pre-commit", "black", "sphinx", "sphinx-rtd-theme", "sphinx-toolbox"]
image = [
"blobfile",
"torch",
"imageio",
"clip@git+https://github.com/openai/CLIP.git",
"diffusers[pytorch]",
"transformers",
"improved-diffusion@git+https://github.com/fjxmlzn/improved-diffusion.git@8f6677c3c47d1c1ad2e22ad2603eaec4cc639805",
"wilds",
"cairosvg",
"python_avatars",
"azure-identity",
]
text = [
"gdown",
"tiktoken",
"python-dotenv",
"sentence-transformers",
"protobuf",
"sentencepiece",
"fschat@git+https://github.com/lm-sys/FastChat.git",
"transformers",
"accelerate",
"tqdm",
"azure-identity",
]
[project.urls]
Homepage = "https://microsoft.github.io/DPSDA/"
Documentation = "https://microsoft.github.io/DPSDA/"
Repository = "https://github.com/microsoft/DPSDA"
"Bug Tracker" = "https://github.com/microsoft/DPSDA/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = [
"doc*",
"data*",
"example*",
"docker*",
"amlt*",
"dist*",
"_*",
"result*",
]