-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
43 lines (39 loc) · 1.29 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "private-evolution"
version = "0.0.1"
maintainers = [{ name = "Zinan Lin", email = "[email protected]" }]
requires-python = ">=3.8"
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",
]
[project.optional-dependencies]
dev = ["pre-commit", "black", "sphinx", "sphinx-rtd-theme"]
image = [
"blobfile",
"torch",
"imageio",
"clip@git+https://github.com/openai/CLIP.git@dcba3cb2e2827b402d2701e7e1c7d9fed8a20ef1",
"diffusers[pytorch]",
"improved-diffusion@git+https://github.com/fjxmlzn/improved-diffusion.git@8f6677c3c47d1c1ad2e22ad2603eaec4cc639805",
"wilds",
]
[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.packages.find]
exclude = ["doc", "data", "example", "docker*", "amlt", "dist*", "_*", "result*", "*.egg-info", "__pycache__", ".git*"]