From 9d452cf8fda3fe99b1d6a99fb9692c14e64bf443 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 4 Jun 2016 16:26:14 +0300 Subject: [PATCH] Pass installation/compilation options to pip and easy_install --- requirements.txt | 4 ++++ setup.cfg | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/requirements.txt b/requirements.txt index 7d553d8..11f797d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,6 @@ +--trusted-host phdru.name +--find-links=http://phdru.name/Software/Python/ +--install-option="--compile" + SQLObject>=2.2.1 m_lib>=2.0 diff --git a/setup.cfg b/setup.cfg index 7048e1c..982ea8a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,10 @@ [bdist_wheel] universal = 1 +[easy_install] +find_links = http://phdru.name/Software/Python/ +optimize = 2 + [egg_info] tag_build = tag_date = 0 -- 2.39.2