File: pip3-editable.sh

package info (click to toggle)
python-pip 18.1-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,564 kB
  • sloc: python: 67,021; sh: 77; makefile: 68
file content (21 lines) | stat: -rw-r--r-- 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

export HOME=$AUTOPKGTEST_TMP
export PIP_DISABLE_PIP_VERSION_CHECK=1

cd $HOME
mkdir stupid
cat > stupid/setup.py <<EOF
from setuptools import setup

setup(
    name='stupid',
    version='0.1',
    extras_require = {
        'testing': [],
        }
    )
EOF

cd stupid
pip3 install -e .[testing]