Lines Matching full:wheel
78 (example) $ python -m pip install wheel
80 You can get the version string for ``wheel`` by running the following:
86 >>> version('wheel') # doctest: +SKIP
95 >>> list(metadata('wheel')) # doctest: +SKIP
143 Pick out a specific script named "wheel" (found in the wheel project)::
145 >>> 'wheel' in scripts.names # doctest: +SKIP
147 >>> wheel = scripts['wheel'] # doctest: +SKIP
151 >>> (wheel,) = entry_points(group='console_scripts', name='wheel') # doctest: +SKIP
152 >>> (wheel,) = entry_points().select(group='console_scripts', name='wheel') # doctest: +SKIP
156 >>> wheel # doctest: +SKIP
157 EntryPoint(name='wheel', value='wheel.cli:main', group='console_scripts')
158 >>> wheel.module # doctest: +SKIP
159 'wheel.cli'
160 >>> wheel.attr # doctest: +SKIP
162 >>> wheel.extras # doctest: +SKIP
164 >>> main = wheel.load() # doctest: +SKIP
195 >>> wheel_metadata = metadata('wheel') # doctest: +SKIP
234 >>> version('wheel') # doctest: +SKIP
250 >>> util = [p for p in files('wheel') if 'util.py' in str(p)][0] # doctest: +SKIP
252 PackagePath('wheel/util.py')
275 PosixPath('/home/gustav/example/lib/site-packages/wheel/util.py')
294 >>> requires('wheel') # doctest: +SKIP
326 >>> dist = distribution('wheel') # doctest: +SKIP