mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
04874e24fd
- avoid hitting the index: use `common_wheels`/`script.pip_install_local` - use `script.pip(..., use_module=True)` to simplify some tests - improve `test_pep518_uses_build_env` parametrization - simplify `test_pep518_with_user_pip`: we only need to check build requirements can be installed, so no need for testing with both `install` and `wheel` command - fix `test_pip_wheel_with_pep518_build_reqs_no_isolation`: building pep518-3.0 without isolation should fail if the build requirements are not installed.
9 lines
185 B
Python
9 lines
185 B
Python
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
|
|
import simplewheel # ensure dependency is installed
|
|
|
|
setup(name='pep518',
|
|
version='3.0',
|
|
py_modules=['pep518'],
|
|
)
|