├── LICENSE ├── README.md ├── bin ├── compile ├── detect ├── release ├── steps │ ├── conda_compile │ └── hooks │ │ ├── post_compile │ │ └── pre_compile └── utils └── test ├── conda-requirements.txt └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/release -------------------------------------------------------------------------------- /bin/steps/conda_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/steps/conda_compile -------------------------------------------------------------------------------- /bin/steps/hooks/post_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/steps/hooks/post_compile -------------------------------------------------------------------------------- /bin/steps/hooks/pre_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/steps/hooks/pre_compile -------------------------------------------------------------------------------- /bin/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroku-python/conda-buildpack/HEAD/bin/utils -------------------------------------------------------------------------------- /test/conda-requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | numpy 3 | bitarray 4 | reportlab 5 | pandas 6 | -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | httpbin 3 | gunicorn --------------------------------------------------------------------------------