vtool-ibeis 2.2.1__tar.gz → 2.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. vtool_ibeis-2.3.0/PKG-INFO +561 -0
  2. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/README.rst +1 -7
  3. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/pyproject.toml +10 -4
  4. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/setup.py +24 -21
  5. vtool_ibeis-2.3.0/tests/test_akmeans.py +67 -0
  6. vtool_ibeis-2.3.0/tests/test_coverage_max_reduce.py +112 -0
  7. vtool_ibeis-2.3.0/tests/test_draw_keypoint.py +158 -0
  8. vtool_ibeis-2.3.0/tests/test_import.py +2 -0
  9. vtool_ibeis-2.3.0/tests/test_pyflann.py +380 -0
  10. vtool_ibeis-2.3.0/tests/test_spatial_verification.py +195 -0
  11. vtool_ibeis-2.3.0/tests/test_vtool.py +42 -0
  12. vtool_ibeis-2.3.0/tests/testdata_nondeterm_sver.py +4639 -0
  13. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/__init__.py +1 -1
  14. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/blend.py +1 -1
  15. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/coverage_grid.py +2 -2
  16. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/coverage_kpts.py +17 -16
  17. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/demodata.py +3 -3
  18. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/features.py +3 -4
  19. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/geometry.py +3 -9
  20. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/histogram.py +2 -2
  21. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/image.py +38 -38
  22. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/image_filters.py +10 -6
  23. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/inspect_matches.py +2 -2
  24. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/matching.py +13 -9
  25. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/nearest_neighbors.py +4 -2
  26. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/patch.py +11 -23
  27. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/quality_classifier.py +2 -2
  28. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/segmentation.py +1 -1
  29. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/spatial_verification.py +4 -6
  30. vtool_ibeis-2.3.0/vtool_ibeis.egg-info/PKG-INFO +561 -0
  31. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis.egg-info/SOURCES.txt +8 -0
  32. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis.egg-info/requires.txt +462 -283
  33. vtool_ibeis-2.2.1/PKG-INFO +0 -79
  34. vtool_ibeis-2.2.1/vtool_ibeis.egg-info/PKG-INFO +0 -79
  35. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/LICENSE +0 -0
  36. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/setup.cfg +0 -0
  37. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/__main__.py +0 -0
  38. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/_pyflann_backend.py +0 -0
  39. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/_rhomb_dist.py +0 -0
  40. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/chip.py +0 -0
  41. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/clustering2.py +0 -0
  42. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/confusion.py +0 -0
  43. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/distance.py +0 -0
  44. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/ellipse.py +0 -0
  45. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/exif.py +0 -0
  46. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/fontdemo.py +0 -0
  47. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/image_shared.py +0 -0
  48. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/keypoint.py +0 -0
  49. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/linalg.py +0 -0
  50. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/numpy_utils.py +0 -0
  51. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/other.py +0 -0
  52. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/score_normalization.py +0 -0
  53. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/sver_c_wrapper.py +0 -0
  54. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/symbolic.py +0 -0
  55. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/trig.py +0 -0
  56. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis/util_math.py +0 -0
  57. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis.egg-info/dependency_links.txt +0 -0
  58. {vtool_ibeis-2.2.1 → vtool_ibeis-2.3.0}/vtool_ibeis.egg-info/top_level.txt +0 -0
@@ -0,0 +1,561 @@
1
+ Metadata-Version: 2.1
2
+ Name: vtool_ibeis
3
+ Version: 2.3.0
4
+ Summary: vision tools for IBEIS
5
+ Home-page: https://github.com/Erotemic/vtool_ibeis
6
+ Author: Jon Crall, Jason Parham, Hendrik Weideman, Avi Weinstock, Zackary Rutfield, Chuck Stewart
7
+ Author-email: erotemic@gmail.com
8
+ License: Apache 2
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
+ Classifier: Topic :: Utilities
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/x-rst
20
+ License-File: LICENSE
21
+ Requires-Dist: networkx>=2.8; python_version < "4.0" and python_version >= "3.11"
22
+ Requires-Dist: networkx>=2.7; python_version < "3.11" and python_version >= "3.8"
23
+ Requires-Dist: networkx>=2.6.2; python_version < "3.8" and python_version >= "3.7"
24
+ Requires-Dist: networkx>=2.5; python_version < "3.7" and python_version >= "3.6"
25
+ Requires-Dist: networkx>=2.3; python_version < "3.6" and python_version >= "3.5"
26
+ Requires-Dist: networkx>=1.11; python_version < "3.5" and python_version >= "2.7"
27
+ Requires-Dist: Pillow>=10.0.0; python_version < "4.0" and python_version >= "3.12"
28
+ Requires-Dist: Pillow>=9.4.0; python_version < "3.12" and python_version >= "3.11"
29
+ Requires-Dist: Pillow>=9.1.0; python_version < "3.11" and python_version >= "3.10"
30
+ Requires-Dist: Pillow>=8.3.2; python_version < "3.10" and python_version >= "3.9"
31
+ Requires-Dist: Pillow>=8.3.2; python_version < "3.9" and python_version >= "3.8"
32
+ Requires-Dist: Pillow>=9.0.0; python_version < "3.8" and python_version >= "3.7"
33
+ Requires-Dist: Pillow>=8.3.2; python_version < "3.7" and python_version >= "3.6"
34
+ Requires-Dist: numpy>=1.26.0; python_version < "4.0" and python_version >= "3.12"
35
+ Requires-Dist: numpy>=1.24.0; python_version < "3.12" and python_version >= "3.11"
36
+ Requires-Dist: numpy>=1.21.6; python_version < "3.11" and python_version >= "3.10"
37
+ Requires-Dist: numpy>=1.19.3; python_version < "3.10" and python_version >= "3.9"
38
+ Requires-Dist: numpy>=1.19.2; python_version < "3.9" and python_version >= "3.8"
39
+ Requires-Dist: numpy>=1.19.2; python_version < "3.8" and python_version >= "3.7"
40
+ Requires-Dist: numpy>=1.19.2; python_version < "3.7" and python_version >= "3.6"
41
+ Requires-Dist: scipy>=1.11.2; python_version < "4.0" and python_version >= "3.12"
42
+ Requires-Dist: scipy>=1.9.2; python_version < "3.12" and python_version >= "3.11"
43
+ Requires-Dist: scipy>=1.8.0; python_version < "3.11" and python_version >= "3.10"
44
+ Requires-Dist: scipy>=1.8.0; python_version < "3.10" and python_version >= "3.9"
45
+ Requires-Dist: scipy>=1.8.0; python_version < "3.9" and python_version >= "3.8"
46
+ Requires-Dist: scipy>=1.6.0; python_version < "3.8" and python_version >= "3.7"
47
+ Requires-Dist: six>=1.10.0
48
+ Requires-Dist: scikit-image>=0.22.0; python_version < "4.0" and python_version >= "3.12"
49
+ Requires-Dist: scikit-image>=0.20.0; python_version < "3.12" and python_version >= "3.11"
50
+ Requires-Dist: scikit-image>=0.19.0; python_version < "3.11" and python_version >= "3.10"
51
+ Requires-Dist: scikit-image>=0.18.0; python_version < "3.10" and python_version >= "3.9"
52
+ Requires-Dist: scikit-image>=0.17.2; python_version < "3.9" and python_version >= "3.8"
53
+ Requires-Dist: scikit-image>=0.17.2; python_version < "3.8" and python_version >= "3.7"
54
+ Requires-Dist: scikit-image>=0.17.2; python_version < "3.7" and python_version >= "3.6"
55
+ Requires-Dist: scikit-learn>=1.3.1; python_version < "4.0" and python_version >= "3.12"
56
+ Requires-Dist: scikit-learn>=1.1.3; python_version < "3.12" and python_version >= "3.11"
57
+ Requires-Dist: scikit-learn>=1.0.2; python_version < "3.11" and python_version >= "3.10"
58
+ Requires-Dist: scikit-learn>=1.0.2; python_version < "3.10" and python_version >= "3.9"
59
+ Requires-Dist: scikit-learn>=1.0.2; python_version < "3.9" and python_version >= "3.8"
60
+ Requires-Dist: scikit-learn>=0.24.1; python_version < "3.8" and python_version >= "3.7"
61
+ Requires-Dist: scikit-learn>=0.24.1; python_version < "3.7" and python_version >= "3.6"
62
+ Requires-Dist: statsmodels>=0.14.0; python_version < "4.0" and python_version >= "3.12"
63
+ Requires-Dist: statsmodels>=0.13.3; python_version < "3.12" and python_version >= "3.11"
64
+ Requires-Dist: statsmodels>=0.13.1; python_version < "3.11" and python_version >= "3.10"
65
+ Requires-Dist: statsmodels>=0.13.1; python_version < "3.10" and python_version >= "3.9"
66
+ Requires-Dist: statsmodels>=0.13.1; python_version < "3.9" and python_version >= "3.8"
67
+ Requires-Dist: statsmodels>=0.12.2; python_version < "3.8" and python_version >= "3.7"
68
+ Requires-Dist: ubelt>=1.3.4
69
+ Requires-Dist: utool>=2.2.0
70
+ Requires-Dist: delorean>=1.0.0
71
+ Requires-Dist: packaging>=21.3
72
+ Provides-Extra: all
73
+ Requires-Dist: networkx>=2.8; (python_version < "4.0" and python_version >= "3.11") and extra == "all"
74
+ Requires-Dist: networkx>=2.7; (python_version < "3.11" and python_version >= "3.8") and extra == "all"
75
+ Requires-Dist: networkx>=2.6.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
76
+ Requires-Dist: networkx>=2.5; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
77
+ Requires-Dist: networkx>=2.3; (python_version < "3.6" and python_version >= "3.5") and extra == "all"
78
+ Requires-Dist: networkx>=1.11; (python_version < "3.5" and python_version >= "2.7") and extra == "all"
79
+ Requires-Dist: Pillow>=10.0.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all"
80
+ Requires-Dist: Pillow>=9.4.0; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
81
+ Requires-Dist: Pillow>=9.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
82
+ Requires-Dist: Pillow>=8.3.2; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
83
+ Requires-Dist: Pillow>=8.3.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
84
+ Requires-Dist: Pillow>=9.0.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
85
+ Requires-Dist: Pillow>=8.3.2; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
86
+ Requires-Dist: numpy>=1.26.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all"
87
+ Requires-Dist: numpy>=1.24.0; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
88
+ Requires-Dist: numpy>=1.21.6; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
89
+ Requires-Dist: numpy>=1.19.3; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
90
+ Requires-Dist: numpy>=1.19.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
91
+ Requires-Dist: numpy>=1.19.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
92
+ Requires-Dist: numpy>=1.19.2; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
93
+ Requires-Dist: scipy>=1.11.2; (python_version < "4.0" and python_version >= "3.12") and extra == "all"
94
+ Requires-Dist: scipy>=1.9.2; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
95
+ Requires-Dist: scipy>=1.8.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
96
+ Requires-Dist: scipy>=1.8.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
97
+ Requires-Dist: scipy>=1.8.0; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
98
+ Requires-Dist: scipy>=1.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
99
+ Requires-Dist: six>=1.10.0; extra == "all"
100
+ Requires-Dist: scikit-image>=0.22.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all"
101
+ Requires-Dist: scikit-image>=0.20.0; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
102
+ Requires-Dist: scikit-image>=0.19.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
103
+ Requires-Dist: scikit-image>=0.18.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
104
+ Requires-Dist: scikit-image>=0.17.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
105
+ Requires-Dist: scikit-image>=0.17.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
106
+ Requires-Dist: scikit-image>=0.17.2; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
107
+ Requires-Dist: scikit-learn>=1.3.1; (python_version < "4.0" and python_version >= "3.12") and extra == "all"
108
+ Requires-Dist: scikit-learn>=1.1.3; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
109
+ Requires-Dist: scikit-learn>=1.0.2; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
110
+ Requires-Dist: scikit-learn>=1.0.2; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
111
+ Requires-Dist: scikit-learn>=1.0.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
112
+ Requires-Dist: scikit-learn>=0.24.1; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
113
+ Requires-Dist: scikit-learn>=0.24.1; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
114
+ Requires-Dist: statsmodels>=0.14.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all"
115
+ Requires-Dist: statsmodels>=0.13.3; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
116
+ Requires-Dist: statsmodels>=0.13.1; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
117
+ Requires-Dist: statsmodels>=0.13.1; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
118
+ Requires-Dist: statsmodels>=0.13.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
119
+ Requires-Dist: statsmodels>=0.12.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
120
+ Requires-Dist: ubelt>=1.3.4; extra == "all"
121
+ Requires-Dist: utool>=2.2.0; extra == "all"
122
+ Requires-Dist: delorean>=1.0.0; extra == "all"
123
+ Requires-Dist: packaging>=21.3; extra == "all"
124
+ Requires-Dist: xdoctest>=1.1.3; extra == "all"
125
+ Requires-Dist: pytest>=8.1.1; (python_version < "4.0" and python_version >= "3.13") and extra == "all"
126
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.13" and python_version >= "3.12") and extra == "all"
127
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.12" and python_version >= "3.11") and extra == "all"
128
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
129
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
130
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
131
+ Requires-Dist: pytest>=4.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
132
+ Requires-Dist: pytest<=6.1.2,>=4.6.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "all"
133
+ Requires-Dist: pytest<=4.6.11,>=4.6.0; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "all"
134
+ Requires-Dist: pytest<=4.6.11,>=4.6.0; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "all"
135
+ Requires-Dist: pytest-cov>=3.0.0; python_version >= "3.6.0" and extra == "all"
136
+ Requires-Dist: pytest-cov>=2.9.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "all"
137
+ Requires-Dist: pytest-cov>=2.8.1; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "all"
138
+ Requires-Dist: pytest-cov>=2.8.1; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "all"
139
+ Requires-Dist: coverage>=6.1.1; python_version >= "3.10" and extra == "all"
140
+ Requires-Dist: coverage>=5.3.1; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
141
+ Requires-Dist: coverage>=6.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
142
+ Requires-Dist: coverage>=6.1.1; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
143
+ Requires-Dist: coverage>=6.1.1; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
144
+ Requires-Dist: coverage>=5.3.1; (python_version < "3.6" and python_version >= "3.5") and extra == "all"
145
+ Requires-Dist: coverage>=4.3.4; (python_version < "3.5" and python_version >= "3.4") and extra == "all"
146
+ Requires-Dist: coverage>=5.3.1; (python_version < "3.4" and python_version >= "2.7") and extra == "all"
147
+ Requires-Dist: coverage>=4.5; (python_version < "2.7" and python_version >= "2.6") and extra == "all"
148
+ Requires-Dist: pyflann_ibeis>=2.3.0; (python_version < "4.0" and python_version >= "3.11") and extra == "all"
149
+ Requires-Dist: pyflann_ibeis>=2.2.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
150
+ Requires-Dist: pyflann_ibeis>=2.2.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
151
+ Requires-Dist: pyflann_ibeis>=2.0.0; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
152
+ Requires-Dist: pyflann_ibeis>=2.2.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
153
+ Requires-Dist: pyhesaff>=2.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "all"
154
+ Requires-Dist: pyhesaff>=2.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
155
+ Requires-Dist: pyhesaff>=2.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
156
+ Requires-Dist: pyhesaff>=2.0.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
157
+ Requires-Dist: pyhesaff>=2.0.1; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
158
+ Requires-Dist: pyhesaff>=2.0.1; (python_version < "3.7" and python_version >= "3.6") and extra == "all"
159
+ Requires-Dist: vtool_ibeis_ext>=0.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "all"
160
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all"
161
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all"
162
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.9" and python_version >= "3.8") and extra == "all"
163
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all"
164
+ Requires-Dist: setuptools>=34.1.0; extra == "all"
165
+ Requires-Dist: wheel; extra == "all"
166
+ Requires-Dist: scikit-build; extra == "all"
167
+ Requires-Dist: cmake; extra == "all"
168
+ Requires-Dist: ninja; extra == "all"
169
+ Provides-Extra: headless
170
+ Requires-Dist: opencv-python-headless>=4.5.5.64; (python_version < "4.0" and python_version >= "3.11") and extra == "headless"
171
+ Requires-Dist: opencv-python-headless>=4.5.4.58; (python_version < "3.11" and python_version >= "3.10") and extra == "headless"
172
+ Requires-Dist: opencv-python-headless>=3.4.15.55; (python_version < "3.10" and python_version >= "3.9") and extra == "headless"
173
+ Requires-Dist: opencv-python-headless>=3.4.15.55; (python_version < "3.9" and python_version >= "3.8") and extra == "headless"
174
+ Requires-Dist: opencv-python-headless>=3.4.15.55; (python_version < "3.8" and python_version >= "3.7") and extra == "headless"
175
+ Requires-Dist: opencv-python-headless>=3.4.13.47; (python_version < "3.7" and python_version >= "3.6") and extra == "headless"
176
+ Requires-Dist: opencv-python-headless>=3.4.2.16; (python_version < "3.6" and python_version >= "3.5") and extra == "headless"
177
+ Requires-Dist: opencv-python-headless>=3.4.2.16; (python_version < "3.5" and python_version >= "3.4") and extra == "headless"
178
+ Requires-Dist: opencv-python-headless>=3.4.2.16; (python_version < "3.4" and python_version >= "2.7") and extra == "headless"
179
+ Provides-Extra: graphics
180
+ Requires-Dist: opencv-python>=4.5.5.64; (python_version < "4.0" and python_version >= "3.11") and extra == "graphics"
181
+ Requires-Dist: opencv-python>=4.5.4.58; (python_version < "3.11" and python_version >= "3.10") and extra == "graphics"
182
+ Requires-Dist: opencv-python>=3.4.15.55; (python_version < "3.10" and python_version >= "3.9") and extra == "graphics"
183
+ Requires-Dist: opencv-python>=3.4.15.55; (python_version < "3.9" and python_version >= "3.8") and extra == "graphics"
184
+ Requires-Dist: opencv-python>=3.4.15.55; (python_version < "3.8" and python_version >= "3.7") and extra == "graphics"
185
+ Requires-Dist: opencv-python>=3.4.13.47; (python_version < "3.7" and python_version >= "3.6") and extra == "graphics"
186
+ Requires-Dist: opencv-python>=3.1.0.2; (python_version < "3.6" and python_version >= "3.5") and extra == "graphics"
187
+ Requires-Dist: opencv-python>=3.1.0.5; (python_version < "3.5" and python_version >= "3.4") and extra == "graphics"
188
+ Requires-Dist: opencv-python>=3.1.0.0; (python_version < "3.4" and python_version >= "2.7") and extra == "graphics"
189
+ Provides-Extra: build
190
+ Requires-Dist: setuptools>=34.1.0; extra == "build"
191
+ Requires-Dist: wheel; extra == "build"
192
+ Requires-Dist: scikit-build; extra == "build"
193
+ Requires-Dist: cmake; extra == "build"
194
+ Requires-Dist: ninja; extra == "build"
195
+ Provides-Extra: docs
196
+ Requires-Dist: sphinx>=5.0.1; extra == "docs"
197
+ Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
198
+ Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
199
+ Requires-Dist: sphinxcontrib-napoleon>=0.7; extra == "docs"
200
+ Requires-Dist: sphinx-autoapi>=1.8.4; extra == "docs"
201
+ Requires-Dist: Pygments>=2.9.0; extra == "docs"
202
+ Requires-Dist: myst_parser>=0.18.0; extra == "docs"
203
+ Requires-Dist: sphinx-reredirects>=0.0.1; extra == "docs"
204
+ Provides-Extra: optional
205
+ Requires-Dist: pyflann_ibeis>=2.3.0; (python_version < "4.0" and python_version >= "3.11") and extra == "optional"
206
+ Requires-Dist: pyflann_ibeis>=2.2.0; (python_version < "3.11" and python_version >= "3.10") and extra == "optional"
207
+ Requires-Dist: pyflann_ibeis>=2.2.0; (python_version < "3.10" and python_version >= "3.9") and extra == "optional"
208
+ Requires-Dist: pyflann_ibeis>=2.0.0; (python_version < "3.9" and python_version >= "3.8") and extra == "optional"
209
+ Requires-Dist: pyflann_ibeis>=2.2.0; (python_version < "3.8" and python_version >= "3.7") and extra == "optional"
210
+ Requires-Dist: pyhesaff>=2.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "optional"
211
+ Requires-Dist: pyhesaff>=2.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "optional"
212
+ Requires-Dist: pyhesaff>=2.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "optional"
213
+ Requires-Dist: pyhesaff>=2.0.1; (python_version < "3.9" and python_version >= "3.8") and extra == "optional"
214
+ Requires-Dist: pyhesaff>=2.0.1; (python_version < "3.8" and python_version >= "3.7") and extra == "optional"
215
+ Requires-Dist: pyhesaff>=2.0.1; (python_version < "3.7" and python_version >= "3.6") and extra == "optional"
216
+ Requires-Dist: vtool_ibeis_ext>=0.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "optional"
217
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "optional"
218
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "optional"
219
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.9" and python_version >= "3.8") and extra == "optional"
220
+ Requires-Dist: vtool_ibeis_ext>=0.1.0; (python_version < "3.8" and python_version >= "3.7") and extra == "optional"
221
+ Provides-Extra: runtime
222
+ Requires-Dist: networkx>=2.8; (python_version < "4.0" and python_version >= "3.11") and extra == "runtime"
223
+ Requires-Dist: networkx>=2.7; (python_version < "3.11" and python_version >= "3.8") and extra == "runtime"
224
+ Requires-Dist: networkx>=2.6.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
225
+ Requires-Dist: networkx>=2.5; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime"
226
+ Requires-Dist: networkx>=2.3; (python_version < "3.6" and python_version >= "3.5") and extra == "runtime"
227
+ Requires-Dist: networkx>=1.11; (python_version < "3.5" and python_version >= "2.7") and extra == "runtime"
228
+ Requires-Dist: Pillow>=10.0.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime"
229
+ Requires-Dist: Pillow>=9.4.0; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime"
230
+ Requires-Dist: Pillow>=9.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime"
231
+ Requires-Dist: Pillow>=8.3.2; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime"
232
+ Requires-Dist: Pillow>=8.3.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime"
233
+ Requires-Dist: Pillow>=9.0.0; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
234
+ Requires-Dist: Pillow>=8.3.2; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime"
235
+ Requires-Dist: numpy>=1.26.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime"
236
+ Requires-Dist: numpy>=1.24.0; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime"
237
+ Requires-Dist: numpy>=1.21.6; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime"
238
+ Requires-Dist: numpy>=1.19.3; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime"
239
+ Requires-Dist: numpy>=1.19.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime"
240
+ Requires-Dist: numpy>=1.19.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
241
+ Requires-Dist: numpy>=1.19.2; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime"
242
+ Requires-Dist: scipy>=1.11.2; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime"
243
+ Requires-Dist: scipy>=1.9.2; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime"
244
+ Requires-Dist: scipy>=1.8.0; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime"
245
+ Requires-Dist: scipy>=1.8.0; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime"
246
+ Requires-Dist: scipy>=1.8.0; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime"
247
+ Requires-Dist: scipy>=1.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
248
+ Requires-Dist: six>=1.10.0; extra == "runtime"
249
+ Requires-Dist: scikit-image>=0.22.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime"
250
+ Requires-Dist: scikit-image>=0.20.0; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime"
251
+ Requires-Dist: scikit-image>=0.19.0; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime"
252
+ Requires-Dist: scikit-image>=0.18.0; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime"
253
+ Requires-Dist: scikit-image>=0.17.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime"
254
+ Requires-Dist: scikit-image>=0.17.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
255
+ Requires-Dist: scikit-image>=0.17.2; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime"
256
+ Requires-Dist: scikit-learn>=1.3.1; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime"
257
+ Requires-Dist: scikit-learn>=1.1.3; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime"
258
+ Requires-Dist: scikit-learn>=1.0.2; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime"
259
+ Requires-Dist: scikit-learn>=1.0.2; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime"
260
+ Requires-Dist: scikit-learn>=1.0.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime"
261
+ Requires-Dist: scikit-learn>=0.24.1; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
262
+ Requires-Dist: scikit-learn>=0.24.1; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime"
263
+ Requires-Dist: statsmodels>=0.14.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime"
264
+ Requires-Dist: statsmodels>=0.13.3; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime"
265
+ Requires-Dist: statsmodels>=0.13.1; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime"
266
+ Requires-Dist: statsmodels>=0.13.1; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime"
267
+ Requires-Dist: statsmodels>=0.13.1; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime"
268
+ Requires-Dist: statsmodels>=0.12.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime"
269
+ Requires-Dist: ubelt>=1.3.4; extra == "runtime"
270
+ Requires-Dist: utool>=2.2.0; extra == "runtime"
271
+ Requires-Dist: delorean>=1.0.0; extra == "runtime"
272
+ Requires-Dist: packaging>=21.3; extra == "runtime"
273
+ Provides-Extra: tests
274
+ Requires-Dist: xdoctest>=1.1.3; extra == "tests"
275
+ Requires-Dist: pytest>=8.1.1; (python_version < "4.0" and python_version >= "3.13") and extra == "tests"
276
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.13" and python_version >= "3.12") and extra == "tests"
277
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.12" and python_version >= "3.11") and extra == "tests"
278
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.11" and python_version >= "3.10") and extra == "tests"
279
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.10" and python_version >= "3.9") and extra == "tests"
280
+ Requires-Dist: pytest>=8.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "tests"
281
+ Requires-Dist: pytest>=4.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "tests"
282
+ Requires-Dist: pytest<=6.1.2,>=4.6.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "tests"
283
+ Requires-Dist: pytest<=4.6.11,>=4.6.0; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "tests"
284
+ Requires-Dist: pytest<=4.6.11,>=4.6.0; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "tests"
285
+ Requires-Dist: pytest-cov>=3.0.0; python_version >= "3.6.0" and extra == "tests"
286
+ Requires-Dist: pytest-cov>=2.9.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "tests"
287
+ Requires-Dist: pytest-cov>=2.8.1; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "tests"
288
+ Requires-Dist: pytest-cov>=2.8.1; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "tests"
289
+ Requires-Dist: coverage>=6.1.1; python_version >= "3.10" and extra == "tests"
290
+ Requires-Dist: coverage>=5.3.1; (python_version < "3.10" and python_version >= "3.9") and extra == "tests"
291
+ Requires-Dist: coverage>=6.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "tests"
292
+ Requires-Dist: coverage>=6.1.1; (python_version < "3.8" and python_version >= "3.7") and extra == "tests"
293
+ Requires-Dist: coverage>=6.1.1; (python_version < "3.7" and python_version >= "3.6") and extra == "tests"
294
+ Requires-Dist: coverage>=5.3.1; (python_version < "3.6" and python_version >= "3.5") and extra == "tests"
295
+ Requires-Dist: coverage>=4.3.4; (python_version < "3.5" and python_version >= "3.4") and extra == "tests"
296
+ Requires-Dist: coverage>=5.3.1; (python_version < "3.4" and python_version >= "2.7") and extra == "tests"
297
+ Requires-Dist: coverage>=4.5; (python_version < "2.7" and python_version >= "2.6") and extra == "tests"
298
+ Provides-Extra: all-strict
299
+ Requires-Dist: networkx==2.8; (python_version < "4.0" and python_version >= "3.11") and extra == "all-strict"
300
+ Requires-Dist: networkx==2.7; (python_version < "3.11" and python_version >= "3.8") and extra == "all-strict"
301
+ Requires-Dist: networkx==2.6.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
302
+ Requires-Dist: networkx==2.5; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
303
+ Requires-Dist: networkx==2.3; (python_version < "3.6" and python_version >= "3.5") and extra == "all-strict"
304
+ Requires-Dist: networkx==1.11; (python_version < "3.5" and python_version >= "2.7") and extra == "all-strict"
305
+ Requires-Dist: Pillow==10.0.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all-strict"
306
+ Requires-Dist: Pillow==9.4.0; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
307
+ Requires-Dist: Pillow==9.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
308
+ Requires-Dist: Pillow==8.3.2; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
309
+ Requires-Dist: Pillow==8.3.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
310
+ Requires-Dist: Pillow==9.0.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
311
+ Requires-Dist: Pillow==8.3.2; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
312
+ Requires-Dist: numpy==1.26.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all-strict"
313
+ Requires-Dist: numpy==1.24.0; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
314
+ Requires-Dist: numpy==1.21.6; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
315
+ Requires-Dist: numpy==1.19.3; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
316
+ Requires-Dist: numpy==1.19.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
317
+ Requires-Dist: numpy==1.19.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
318
+ Requires-Dist: numpy==1.19.2; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
319
+ Requires-Dist: scipy==1.11.2; (python_version < "4.0" and python_version >= "3.12") and extra == "all-strict"
320
+ Requires-Dist: scipy==1.9.2; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
321
+ Requires-Dist: scipy==1.8.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
322
+ Requires-Dist: scipy==1.8.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
323
+ Requires-Dist: scipy==1.8.0; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
324
+ Requires-Dist: scipy==1.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
325
+ Requires-Dist: six==1.10.0; extra == "all-strict"
326
+ Requires-Dist: scikit-image==0.22.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all-strict"
327
+ Requires-Dist: scikit-image==0.20.0; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
328
+ Requires-Dist: scikit-image==0.19.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
329
+ Requires-Dist: scikit-image==0.18.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
330
+ Requires-Dist: scikit-image==0.17.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
331
+ Requires-Dist: scikit-image==0.17.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
332
+ Requires-Dist: scikit-image==0.17.2; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
333
+ Requires-Dist: scikit-learn==1.3.1; (python_version < "4.0" and python_version >= "3.12") and extra == "all-strict"
334
+ Requires-Dist: scikit-learn==1.1.3; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
335
+ Requires-Dist: scikit-learn==1.0.2; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
336
+ Requires-Dist: scikit-learn==1.0.2; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
337
+ Requires-Dist: scikit-learn==1.0.2; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
338
+ Requires-Dist: scikit-learn==0.24.1; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
339
+ Requires-Dist: scikit-learn==0.24.1; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
340
+ Requires-Dist: statsmodels==0.14.0; (python_version < "4.0" and python_version >= "3.12") and extra == "all-strict"
341
+ Requires-Dist: statsmodels==0.13.3; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
342
+ Requires-Dist: statsmodels==0.13.1; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
343
+ Requires-Dist: statsmodels==0.13.1; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
344
+ Requires-Dist: statsmodels==0.13.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
345
+ Requires-Dist: statsmodels==0.12.2; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
346
+ Requires-Dist: ubelt==1.3.4; extra == "all-strict"
347
+ Requires-Dist: utool==2.2.0; extra == "all-strict"
348
+ Requires-Dist: delorean==1.0.0; extra == "all-strict"
349
+ Requires-Dist: packaging==21.3; extra == "all-strict"
350
+ Requires-Dist: xdoctest==1.1.3; extra == "all-strict"
351
+ Requires-Dist: pytest==8.1.1; (python_version < "4.0" and python_version >= "3.13") and extra == "all-strict"
352
+ Requires-Dist: pytest==8.1.1; (python_version < "3.13" and python_version >= "3.12") and extra == "all-strict"
353
+ Requires-Dist: pytest==8.1.1; (python_version < "3.12" and python_version >= "3.11") and extra == "all-strict"
354
+ Requires-Dist: pytest==8.1.1; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
355
+ Requires-Dist: pytest==8.1.1; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
356
+ Requires-Dist: pytest==8.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
357
+ Requires-Dist: pytest==4.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
358
+ Requires-Dist: pytest<=6.1.2,==4.6.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "all-strict"
359
+ Requires-Dist: pytest<=4.6.11,==4.6.0; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "all-strict"
360
+ Requires-Dist: pytest<=4.6.11,==4.6.0; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "all-strict"
361
+ Requires-Dist: pytest-cov==3.0.0; python_version >= "3.6.0" and extra == "all-strict"
362
+ Requires-Dist: pytest-cov==2.9.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "all-strict"
363
+ Requires-Dist: pytest-cov==2.8.1; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "all-strict"
364
+ Requires-Dist: pytest-cov==2.8.1; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "all-strict"
365
+ Requires-Dist: coverage==6.1.1; python_version >= "3.10" and extra == "all-strict"
366
+ Requires-Dist: coverage==5.3.1; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
367
+ Requires-Dist: coverage==6.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
368
+ Requires-Dist: coverage==6.1.1; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
369
+ Requires-Dist: coverage==6.1.1; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
370
+ Requires-Dist: coverage==5.3.1; (python_version < "3.6" and python_version >= "3.5") and extra == "all-strict"
371
+ Requires-Dist: coverage==4.3.4; (python_version < "3.5" and python_version >= "3.4") and extra == "all-strict"
372
+ Requires-Dist: coverage==5.3.1; (python_version < "3.4" and python_version >= "2.7") and extra == "all-strict"
373
+ Requires-Dist: coverage==4.5; (python_version < "2.7" and python_version >= "2.6") and extra == "all-strict"
374
+ Requires-Dist: pyflann_ibeis==2.3.0; (python_version < "4.0" and python_version >= "3.11") and extra == "all-strict"
375
+ Requires-Dist: pyflann_ibeis==2.2.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
376
+ Requires-Dist: pyflann_ibeis==2.2.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
377
+ Requires-Dist: pyflann_ibeis==2.0.0; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
378
+ Requires-Dist: pyflann_ibeis==2.2.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
379
+ Requires-Dist: pyhesaff==2.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "all-strict"
380
+ Requires-Dist: pyhesaff==2.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
381
+ Requires-Dist: pyhesaff==2.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
382
+ Requires-Dist: pyhesaff==2.0.1; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
383
+ Requires-Dist: pyhesaff==2.0.1; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
384
+ Requires-Dist: pyhesaff==2.0.1; (python_version < "3.7" and python_version >= "3.6") and extra == "all-strict"
385
+ Requires-Dist: vtool_ibeis_ext==0.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "all-strict"
386
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "all-strict"
387
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "all-strict"
388
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.9" and python_version >= "3.8") and extra == "all-strict"
389
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.8" and python_version >= "3.7") and extra == "all-strict"
390
+ Requires-Dist: setuptools==34.1.0; extra == "all-strict"
391
+ Requires-Dist: wheel; extra == "all-strict"
392
+ Requires-Dist: scikit-build; extra == "all-strict"
393
+ Requires-Dist: cmake; extra == "all-strict"
394
+ Requires-Dist: ninja; extra == "all-strict"
395
+ Provides-Extra: headless-strict
396
+ Requires-Dist: opencv-python-headless==4.5.5.64; (python_version < "4.0" and python_version >= "3.11") and extra == "headless-strict"
397
+ Requires-Dist: opencv-python-headless==4.5.4.58; (python_version < "3.11" and python_version >= "3.10") and extra == "headless-strict"
398
+ Requires-Dist: opencv-python-headless==3.4.15.55; (python_version < "3.10" and python_version >= "3.9") and extra == "headless-strict"
399
+ Requires-Dist: opencv-python-headless==3.4.15.55; (python_version < "3.9" and python_version >= "3.8") and extra == "headless-strict"
400
+ Requires-Dist: opencv-python-headless==3.4.15.55; (python_version < "3.8" and python_version >= "3.7") and extra == "headless-strict"
401
+ Requires-Dist: opencv-python-headless==3.4.13.47; (python_version < "3.7" and python_version >= "3.6") and extra == "headless-strict"
402
+ Requires-Dist: opencv-python-headless==3.4.2.16; (python_version < "3.6" and python_version >= "3.5") and extra == "headless-strict"
403
+ Requires-Dist: opencv-python-headless==3.4.2.16; (python_version < "3.5" and python_version >= "3.4") and extra == "headless-strict"
404
+ Requires-Dist: opencv-python-headless==3.4.2.16; (python_version < "3.4" and python_version >= "2.7") and extra == "headless-strict"
405
+ Provides-Extra: graphics-strict
406
+ Requires-Dist: opencv-python==4.5.5.64; (python_version < "4.0" and python_version >= "3.11") and extra == "graphics-strict"
407
+ Requires-Dist: opencv-python==4.5.4.58; (python_version < "3.11" and python_version >= "3.10") and extra == "graphics-strict"
408
+ Requires-Dist: opencv-python==3.4.15.55; (python_version < "3.10" and python_version >= "3.9") and extra == "graphics-strict"
409
+ Requires-Dist: opencv-python==3.4.15.55; (python_version < "3.9" and python_version >= "3.8") and extra == "graphics-strict"
410
+ Requires-Dist: opencv-python==3.4.15.55; (python_version < "3.8" and python_version >= "3.7") and extra == "graphics-strict"
411
+ Requires-Dist: opencv-python==3.4.13.47; (python_version < "3.7" and python_version >= "3.6") and extra == "graphics-strict"
412
+ Requires-Dist: opencv-python==3.1.0.2; (python_version < "3.6" and python_version >= "3.5") and extra == "graphics-strict"
413
+ Requires-Dist: opencv-python==3.1.0.5; (python_version < "3.5" and python_version >= "3.4") and extra == "graphics-strict"
414
+ Requires-Dist: opencv-python==3.1.0.0; (python_version < "3.4" and python_version >= "2.7") and extra == "graphics-strict"
415
+ Provides-Extra: build-strict
416
+ Requires-Dist: setuptools==34.1.0; extra == "build-strict"
417
+ Requires-Dist: wheel; extra == "build-strict"
418
+ Requires-Dist: scikit-build; extra == "build-strict"
419
+ Requires-Dist: cmake; extra == "build-strict"
420
+ Requires-Dist: ninja; extra == "build-strict"
421
+ Provides-Extra: docs-strict
422
+ Requires-Dist: sphinx==5.0.1; extra == "docs-strict"
423
+ Requires-Dist: sphinx-autobuild==2021.3.14; extra == "docs-strict"
424
+ Requires-Dist: sphinx_rtd_theme==1.0.0; extra == "docs-strict"
425
+ Requires-Dist: sphinxcontrib-napoleon==0.7; extra == "docs-strict"
426
+ Requires-Dist: sphinx-autoapi==1.8.4; extra == "docs-strict"
427
+ Requires-Dist: Pygments==2.9.0; extra == "docs-strict"
428
+ Requires-Dist: myst_parser==0.18.0; extra == "docs-strict"
429
+ Requires-Dist: sphinx-reredirects==0.0.1; extra == "docs-strict"
430
+ Provides-Extra: optional-strict
431
+ Requires-Dist: pyflann_ibeis==2.3.0; (python_version < "4.0" and python_version >= "3.11") and extra == "optional-strict"
432
+ Requires-Dist: pyflann_ibeis==2.2.0; (python_version < "3.11" and python_version >= "3.10") and extra == "optional-strict"
433
+ Requires-Dist: pyflann_ibeis==2.2.0; (python_version < "3.10" and python_version >= "3.9") and extra == "optional-strict"
434
+ Requires-Dist: pyflann_ibeis==2.0.0; (python_version < "3.9" and python_version >= "3.8") and extra == "optional-strict"
435
+ Requires-Dist: pyflann_ibeis==2.2.0; (python_version < "3.8" and python_version >= "3.7") and extra == "optional-strict"
436
+ Requires-Dist: pyhesaff==2.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "optional-strict"
437
+ Requires-Dist: pyhesaff==2.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "optional-strict"
438
+ Requires-Dist: pyhesaff==2.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "optional-strict"
439
+ Requires-Dist: pyhesaff==2.0.1; (python_version < "3.9" and python_version >= "3.8") and extra == "optional-strict"
440
+ Requires-Dist: pyhesaff==2.0.1; (python_version < "3.8" and python_version >= "3.7") and extra == "optional-strict"
441
+ Requires-Dist: pyhesaff==2.0.1; (python_version < "3.7" and python_version >= "3.6") and extra == "optional-strict"
442
+ Requires-Dist: vtool_ibeis_ext==0.1.1; (python_version < "4.0" and python_version >= "3.11") and extra == "optional-strict"
443
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "optional-strict"
444
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.10" and python_version >= "3.9") and extra == "optional-strict"
445
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.9" and python_version >= "3.8") and extra == "optional-strict"
446
+ Requires-Dist: vtool_ibeis_ext==0.1.0; (python_version < "3.8" and python_version >= "3.7") and extra == "optional-strict"
447
+ Provides-Extra: runtime-strict
448
+ Requires-Dist: networkx==2.8; (python_version < "4.0" and python_version >= "3.11") and extra == "runtime-strict"
449
+ Requires-Dist: networkx==2.7; (python_version < "3.11" and python_version >= "3.8") and extra == "runtime-strict"
450
+ Requires-Dist: networkx==2.6.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
451
+ Requires-Dist: networkx==2.5; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime-strict"
452
+ Requires-Dist: networkx==2.3; (python_version < "3.6" and python_version >= "3.5") and extra == "runtime-strict"
453
+ Requires-Dist: networkx==1.11; (python_version < "3.5" and python_version >= "2.7") and extra == "runtime-strict"
454
+ Requires-Dist: Pillow==10.0.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime-strict"
455
+ Requires-Dist: Pillow==9.4.0; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime-strict"
456
+ Requires-Dist: Pillow==9.1.0; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime-strict"
457
+ Requires-Dist: Pillow==8.3.2; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime-strict"
458
+ Requires-Dist: Pillow==8.3.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime-strict"
459
+ Requires-Dist: Pillow==9.0.0; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
460
+ Requires-Dist: Pillow==8.3.2; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime-strict"
461
+ Requires-Dist: numpy==1.26.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime-strict"
462
+ Requires-Dist: numpy==1.24.0; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime-strict"
463
+ Requires-Dist: numpy==1.21.6; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime-strict"
464
+ Requires-Dist: numpy==1.19.3; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime-strict"
465
+ Requires-Dist: numpy==1.19.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime-strict"
466
+ Requires-Dist: numpy==1.19.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
467
+ Requires-Dist: numpy==1.19.2; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime-strict"
468
+ Requires-Dist: scipy==1.11.2; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime-strict"
469
+ Requires-Dist: scipy==1.9.2; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime-strict"
470
+ Requires-Dist: scipy==1.8.0; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime-strict"
471
+ Requires-Dist: scipy==1.8.0; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime-strict"
472
+ Requires-Dist: scipy==1.8.0; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime-strict"
473
+ Requires-Dist: scipy==1.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
474
+ Requires-Dist: six==1.10.0; extra == "runtime-strict"
475
+ Requires-Dist: scikit-image==0.22.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime-strict"
476
+ Requires-Dist: scikit-image==0.20.0; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime-strict"
477
+ Requires-Dist: scikit-image==0.19.0; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime-strict"
478
+ Requires-Dist: scikit-image==0.18.0; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime-strict"
479
+ Requires-Dist: scikit-image==0.17.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime-strict"
480
+ Requires-Dist: scikit-image==0.17.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
481
+ Requires-Dist: scikit-image==0.17.2; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime-strict"
482
+ Requires-Dist: scikit-learn==1.3.1; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime-strict"
483
+ Requires-Dist: scikit-learn==1.1.3; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime-strict"
484
+ Requires-Dist: scikit-learn==1.0.2; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime-strict"
485
+ Requires-Dist: scikit-learn==1.0.2; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime-strict"
486
+ Requires-Dist: scikit-learn==1.0.2; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime-strict"
487
+ Requires-Dist: scikit-learn==0.24.1; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
488
+ Requires-Dist: scikit-learn==0.24.1; (python_version < "3.7" and python_version >= "3.6") and extra == "runtime-strict"
489
+ Requires-Dist: statsmodels==0.14.0; (python_version < "4.0" and python_version >= "3.12") and extra == "runtime-strict"
490
+ Requires-Dist: statsmodels==0.13.3; (python_version < "3.12" and python_version >= "3.11") and extra == "runtime-strict"
491
+ Requires-Dist: statsmodels==0.13.1; (python_version < "3.11" and python_version >= "3.10") and extra == "runtime-strict"
492
+ Requires-Dist: statsmodels==0.13.1; (python_version < "3.10" and python_version >= "3.9") and extra == "runtime-strict"
493
+ Requires-Dist: statsmodels==0.13.1; (python_version < "3.9" and python_version >= "3.8") and extra == "runtime-strict"
494
+ Requires-Dist: statsmodels==0.12.2; (python_version < "3.8" and python_version >= "3.7") and extra == "runtime-strict"
495
+ Requires-Dist: ubelt==1.3.4; extra == "runtime-strict"
496
+ Requires-Dist: utool==2.2.0; extra == "runtime-strict"
497
+ Requires-Dist: delorean==1.0.0; extra == "runtime-strict"
498
+ Requires-Dist: packaging==21.3; extra == "runtime-strict"
499
+ Provides-Extra: tests-strict
500
+ Requires-Dist: xdoctest==1.1.3; extra == "tests-strict"
501
+ Requires-Dist: pytest==8.1.1; (python_version < "4.0" and python_version >= "3.13") and extra == "tests-strict"
502
+ Requires-Dist: pytest==8.1.1; (python_version < "3.13" and python_version >= "3.12") and extra == "tests-strict"
503
+ Requires-Dist: pytest==8.1.1; (python_version < "3.12" and python_version >= "3.11") and extra == "tests-strict"
504
+ Requires-Dist: pytest==8.1.1; (python_version < "3.11" and python_version >= "3.10") and extra == "tests-strict"
505
+ Requires-Dist: pytest==8.1.1; (python_version < "3.10" and python_version >= "3.9") and extra == "tests-strict"
506
+ Requires-Dist: pytest==8.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "tests-strict"
507
+ Requires-Dist: pytest==4.6.0; (python_version < "3.8" and python_version >= "3.7") and extra == "tests-strict"
508
+ Requires-Dist: pytest<=6.1.2,==4.6.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "tests-strict"
509
+ Requires-Dist: pytest<=4.6.11,==4.6.0; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "tests-strict"
510
+ Requires-Dist: pytest<=4.6.11,==4.6.0; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "tests-strict"
511
+ Requires-Dist: pytest-cov==3.0.0; python_version >= "3.6.0" and extra == "tests-strict"
512
+ Requires-Dist: pytest-cov==2.9.0; (python_version < "3.6.0" and python_version >= "3.5.0") and extra == "tests-strict"
513
+ Requires-Dist: pytest-cov==2.8.1; (python_version < "3.5.0" and python_version >= "3.4.0") and extra == "tests-strict"
514
+ Requires-Dist: pytest-cov==2.8.1; (python_version < "2.8.0" and python_version >= "2.7.0") and extra == "tests-strict"
515
+ Requires-Dist: coverage==6.1.1; python_version >= "3.10" and extra == "tests-strict"
516
+ Requires-Dist: coverage==5.3.1; (python_version < "3.10" and python_version >= "3.9") and extra == "tests-strict"
517
+ Requires-Dist: coverage==6.1.1; (python_version < "3.9" and python_version >= "3.8") and extra == "tests-strict"
518
+ Requires-Dist: coverage==6.1.1; (python_version < "3.8" and python_version >= "3.7") and extra == "tests-strict"
519
+ Requires-Dist: coverage==6.1.1; (python_version < "3.7" and python_version >= "3.6") and extra == "tests-strict"
520
+ Requires-Dist: coverage==5.3.1; (python_version < "3.6" and python_version >= "3.5") and extra == "tests-strict"
521
+ Requires-Dist: coverage==4.3.4; (python_version < "3.5" and python_version >= "3.4") and extra == "tests-strict"
522
+ Requires-Dist: coverage==5.3.1; (python_version < "3.4" and python_version >= "2.7") and extra == "tests-strict"
523
+ Requires-Dist: coverage==4.5; (python_version < "2.7" and python_version >= "2.6") and extra == "tests-strict"
524
+
525
+ vtool_ibeis
526
+ ===========
527
+
528
+ |Pypi| |Downloads| |Codecov|
529
+
530
+ Vision Tools - tools for computer vision. Part of the WildMe / IBEIS Project.
531
+
532
+
533
+ Repos relevant to the ibeis project:
534
+
535
+ * https://github.com/Erotemic/plottool_ibeis
536
+
537
+ * https://github.com/Erotemic/guitool_ibeis
538
+
539
+ * https://github.com/Erotemic/dtool_ibeis
540
+
541
+ * https://github.com/Erotemic/vtool_ibeis
542
+
543
+ * https://github.com/Erotemic/vtool_ibeis_ext
544
+
545
+ * https://github.com/Erotemic/pyflann_ibeis
546
+
547
+ * https://github.com/Erotemic/pyhesaff
548
+
549
+ * https://github.com/Erotemic/utool
550
+
551
+ * https://github.com/Erotemic/ibeis
552
+
553
+
554
+ .. |Codecov| image:: https://codecov.io/github/Erotemic/vtool_ibeis/badge.svg?branch=master&service=github
555
+ :target: https://codecov.io/github/Erotemic/vtool_ibeis?branch=master
556
+ .. |Pypi| image:: https://img.shields.io/pypi/v/vtool_ibeis.svg
557
+ :target: https://pypi.python.org/pypi/vtool_ibeis
558
+ .. |Downloads| image:: https://img.shields.io/pypi/dm/vtool_ibeis.svg
559
+ :target: https://pypistats.org/packages/vtool_ibeis
560
+ .. |ReadTheDocs| image:: https://readthedocs.org/projects/vtool_ibeis/badge/?version=latest
561
+ :target: http://vtool_ibeis.readthedocs.io/en/latest/
@@ -1,7 +1,7 @@
1
1
  vtool_ibeis
2
2
  ===========
3
3
 
4
- |Pypi| |Downloads| |Codecov| |Travis| |Appveyor|
4
+ |Pypi| |Downloads| |Codecov|
5
5
 
6
6
  Vision Tools - tools for computer vision. Part of the WildMe / IBEIS Project.
7
7
 
@@ -27,12 +27,6 @@ Repos relevant to the ibeis project:
27
27
  * https://github.com/Erotemic/ibeis
28
28
 
29
29
 
30
- .. |CircleCI| image:: https://circleci.com/gh/Erotemic/vtool_ibeis.svg?style=svg
31
- :target: https://circleci.com/gh/Erotemic/vtool_ibeis
32
- .. |Travis| image:: https://img.shields.io/travis/Erotemic/vtool_ibeis/master.svg?label=Travis%20CI
33
- :target: https://travis-ci.org/Erotemic/vtool_ibeis?branch=master
34
- .. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/github/Erotemic/vtool_ibeis?branch=master&svg=True
35
- :target: https://ci.appveyor.com/project/Erotemic/vtool_ibeis/branch/master
36
30
  .. |Codecov| image:: https://codecov.io/github/Erotemic/vtool_ibeis/badge.svg?branch=master&service=github
37
31
  :target: https://codecov.io/github/Erotemic/vtool_ibeis?branch=master
38
32
  .. |Pypi| image:: https://img.shields.io/pypi/v/vtool_ibeis.svg