-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.59 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "erasus"
version = "0.1.1"
description = "Efficient Representative And Surgical Unlearning Selection — Universal Machine Unlearning via Coreset Selection"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Avaya Aggarwal", email = "aggarwal.avaya27@gmail.com" },
]
keywords = ["machine-unlearning", "coreset", "foundation-models", "privacy", "pytorch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"Pillow>=9.0",
"tqdm>=4.60",
"pyyaml>=6.0",
"transformers>=4.30",
]
[project.optional-dependencies]
full = [
"diffusers>=0.20",
"opacus>=1.3",
"datasets>=2.14",
"scikit-learn>=1.2",
"matplotlib>=3.7",
"seaborn>=0.12",
"wandb>=0.15",
"peft>=0.5",
"huggingface_hub>=0.20",
]
hub = [
"huggingface_hub>=0.20",
"datasets>=2.14",
]
dashboard = [
"streamlit>=1.28",
"gradio>=4.0",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"ruff>=0.1",
"mypy>=1.5",
"pre-commit>=3.4",
]
[project.scripts]
erasus = "erasus.cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["erasus*"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"