Anonymousblind commited on
Commit
f652c09
·
verified ·
1 Parent(s): a7f63b1

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +18 -0
pyproject.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "svs-toolkit"
7
+ version = "1.0.0"
8
+ description = "Subspace Validity Suite: diagnostic toolkit for validating visual directions in Vision-Language Models"
9
+ license = {text = "MIT"}
10
+ requires-python = ">=3.8"
11
+ dependencies = [
12
+ "numpy>=1.21",
13
+ "scipy>=1.7",
14
+ "scikit-learn>=1.0",
15
+ ]
16
+
17
+ [tool.setuptools.packages.find]
18
+ include = ["svs*"]