Lines Matching refs:wheel
46 (example) $ pip install wheel
48 You can get the version string for ``wheel`` by running the following:
54 >>> version('wheel') # doctest: +SKIP
63 >>> list(metadata('wheel')) # doctest: +SKIP
111 Pick out a specific script named "wheel" (found in the wheel project)::
113 >>> 'wheel' in scripts.names # doctest: +SKIP
115 >>> wheel = scripts['wheel'] # doctest: +SKIP
119 >>> (wheel,) = entry_points(group='console_scripts', name='wheel') # doctest: +SKIP
120 >>> (wheel,) = entry_points().select(group='console_scripts', name='wheel') # doctest: +SKIP
124 >>> wheel # doctest: +SKIP
125 EntryPoint(name='wheel', value='wheel.cli:main', group='console_scripts')
126 >>> wheel.module # doctest: +SKIP
127 'wheel.cli'
128 >>> wheel.attr # doctest: +SKIP
130 >>> wheel.extras # doctest: +SKIP
132 >>> main = wheel.load() # doctest: +SKIP
162 >>> wheel_metadata = metadata('wheel') # doctest: +SKIP
193 >>> version('wheel') # doctest: +SKIP
208 >>> util = [p for p in files('wheel') if 'util.py' in str(p)][0] # doctest: +SKIP
210 PackagePath('wheel/util.py')
233 PosixPath('/home/gustav/example/lib/site-packages/wheel/util.py')
251 >>> requires('wheel') # doctest: +SKIP
277 >>> dist = distribution('wheel') # doctest: +SKIP