mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Syntax sugar.
|
|
source $BIN_DIR/utils
|
|
|
|
if (pip-grep -s requirements.txt setuptools distribute &> /dev/null) then
|
|
|
|
puts-warn 'The package setuptools/distribute is listed in requirements.txt.'
|
|
puts-warn 'Please remove to ensure expected behavior. '
|
|
|
|
fi
|