mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
9b185f99d5
more accurate than parsing requirements.txt fixes #359
12 lines
259 B
Bash
Executable File
12 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Syntax sugar.
|
|
source $BIN_DIR/utils
|
|
|
|
if (pip-grep -s 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
|