Create pyproject.toml

#1
by sjzhao - opened
Files changed (1) hide show
  1. pyproject.toml +28 -0
pyproject.toml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "clip"
7
+ version = "0.1.0"
8
+ description = "QA-clip"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "License :: OSI Approved :: Apache Software License",
14
+ ]
15
+ dependencies = [
16
+ "numpy", "tqdm", "six", "timm", "lmdb",
17
+ "torch>=1.7.1", "torchvision", "webdataset",
18
+ "pandas", "transformers"
19
+ ]
20
+
21
+ [project.urls]
22
+ "Homepage" = "https://huggingface.co/TencentARC/QA-CLIP"
23
+
24
+ [tool.setuptools.packages.find]
25
+ exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
26
+
27
+ [tool.wheel]
28
+ exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]