1
+ [build-system ]
2
+ requires = [" pdm-backend" ]
3
+ build-backend = " pdm.backend"
4
+
5
+ [project ]
6
+ name = " timm"
7
+ authors = [
8
+ {name = " Ross Wightman" , email = " ross@huggingface.co" },
9
+ ]
10
+ description = " PyTorch Image Models"
11
+ readme = " README.md"
12
+ requires-python = " >=3.8"
13
+ keywords = [" pytorch" , " image-classification" ]
14
+ license = {text = " Apache-2.0" }
15
+ classifiers = [
16
+ ' Development Status :: 4 - Beta' ,
17
+ ' Intended Audience :: Education' ,
18
+ ' Intended Audience :: Science/Research' ,
19
+ ' License :: OSI Approved :: Apache Software License' ,
20
+ ' Programming Language :: Python :: 3.8' ,
21
+ ' Programming Language :: Python :: 3.9' ,
22
+ ' Programming Language :: Python :: 3.10' ,
23
+ ' Programming Language :: Python :: 3.11' ,
24
+ ' Programming Language :: Python :: 3.12' ,
25
+ ' Topic :: Scientific/Engineering' ,
26
+ ' Topic :: Scientific/Engineering :: Artificial Intelligence' ,
27
+ ' Topic :: Software Development' ,
28
+ ' Topic :: Software Development :: Libraries' ,
29
+ ' Topic :: Software Development :: Libraries :: Python Modules' ,
30
+ ]
31
+ dependencies = [
32
+ ' torch' ,
33
+ ' torchvision' ,
34
+ ' pyyaml' ,
35
+ ' huggingface_hub' ,
36
+ ' safetensors' ,
37
+ ]
38
+ dynamic = [" version" ]
39
+
40
+ [project .urls ]
41
+ homepage = " https://github.com/huggingface/pytorch-image-models"
42
+ documentation = " https://huggingface.co/docs/timm/en/index"
43
+ repository = " https://github.com/huggingface/pytorch-image-models"
44
+
45
+ [tool .pdm .dev-dependencies ]
46
+ test = [
47
+ ' pytest' ,
48
+ ' pytest-timeout' ,
49
+ ' pytest-xdist' ,
50
+ ' pytest-forked' ,
51
+ ' expecttest' ,
52
+ ]
53
+
54
+ [tool .pdm .version ]
55
+ source = " file"
56
+ path = " timm/version.py"
57
+
1
58
[tool .pytest .ini_options ]
2
- markers = [
3
- " base: marker for model tests using the basic setup" ,
4
- " cfg: marker for model tests checking the config" ,
5
- " torchscript: marker for model tests using torchscript" ,
6
- " features: marker for model tests checking feature extraction" ,
7
- " fxforward: marker for model tests using torch fx (only forward)" ,
8
- " fxbackward: marker for model tests using torch fx (only backward)" ,
9
- ]
10
-
11
- [tool .black ]
12
- line-length = 120
13
- target-version = [' py37' , ' py38' , ' py39' , ' py310' , ' py311' ]
14
- skip-string-normalization = true
59
+ testpaths = [' tests' ]
0 commit comments