File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ VENV := $(shell echo $${VIRTUAL_ENV-.venv})
3
3
PYTHON = $(VENV ) /bin/python
4
4
DEV_STAMP = $(VENV ) /.dev_env_installed.stamp
5
5
INSTALL_STAMP = $(VENV ) /.install.stamp
6
+ TEMPDIR := $(shell mktemp -d)
6
7
7
8
.IGNORE : clean distclean maintainer-clean
8
9
.PHONY : all install virtualenv tests
@@ -50,3 +51,9 @@ distclean: clean
50
51
51
52
maintainer-clean : distclean
52
53
rm -fr .venv/ .tox/
54
+
55
+ build-requirements :
56
+ $(VIRTUALENV ) $(TEMPDIR )
57
+ $(TEMPDIR ) /bin/pip install -U pip
58
+ $(TEMPDIR ) /bin/pip install -Ue .
59
+ $(TEMPDIR ) /bin/pip freeze > requirements.txt
Original file line number Diff line number Diff line change
1
+ cffi == 1.5.2
2
+ cryptography == 1.2.3
3
+ enum34 == 1.1.2
4
+ idna == 2.0
5
+ ipaddress == 1.0.16
6
+ -e [email protected] :Kinto/kinto.py.git@12a76561fba75ebd884040f3a31d6d88d5c1fdc8#egg=kinto_client
7
+ ndg-httpsclient == 0.4.0
8
+ pyasn1 == 0.1.9
9
+ pycparser == 2.14
10
+ pyOpenSSL == 0.15.1
11
+ requests == 2.9.1
12
+ six == 1.10.0
13
+ Unidecode == 0.4.19
You can’t perform that action at this time.
0 commit comments