-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spuco"
version = "2.0.3"
authors = [
{ name = "Siddharth Joshi", email = "[email protected]" }
]
description = "SpuCo: Spurious Correlations Datasets and Benchmarks"
readme = "README.md"
requires-python = ">=3.10.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.7.1",
"numpy>=1.23.5",
"setuptools>=61.0",
"torch>=2.0.0",
"torchvision>=0.15.1",
"tqdm>=4.65.0",
"scikit-learn>=0.20.0",
"wilds>=2.0.0",
"transformers>=3.5.0",
"umap-learn>=0.5.5",
"grad-cam>=1.5.0"
]
[project.optional-dependencies]
dev = [
"black>=23.1.0",
"flake8>=3.9.2",
"pytest>=7.2.1",
"properscoring",
"build",
"twine"
]
docs = [
"ipython>=7.34.0",
"nbsphinx>=0.8.12",
"sphinx>=5.3.0",
"sphinx_rtd_theme>=1.1.1"
]
[project.urls]
"Source" = "https://github.com/BigML-CS-UCLA/SpuCo"