Lines Matching refs:wheel
41 (example) $ pip install wheel
43 You can get the version string for ``wheel`` by running the following:
49 >>> version('wheel') # doctest: +SKIP
58 >>> list(metadata('wheel')) # doctest: +SKIP
88 >>> wheel = [ep for ep in scripts if ep.name == 'wheel'][0] # doctest: +SKIP
89 >>> wheel # doctest: +SKIP
90 EntryPoint(name='wheel', value='wheel.cli:main', group='console_scripts')
91 >>> wheel.module # doctest: +SKIP
92 'wheel.cli'
93 >>> wheel.attr # doctest: +SKIP
95 >>> wheel.extras # doctest: +SKIP
97 >>> main = wheel.load() # doctest: +SKIP
116 >>> wheel_metadata = metadata('wheel') # doctest: +SKIP
133 >>> version('wheel') # doctest: +SKIP
148 >>> util = [p for p in files('wheel') if 'util.py' in str(p)][0] # doctest: +SKIP
150 PackagePath('wheel/util.py')
185 >>> requires('wheel') # doctest: +SKIP
198 >>> dist = distribution('wheel') # doctest: +SKIP