Skip to content

Commit fa28ec4

Browse files
author
Rémy HUBSCHER
committed
Add a known working set.
1 parent 12a7656 commit fa28ec4

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ VENV := $(shell echo $${VIRTUAL_ENV-.venv})
33
PYTHON = $(VENV)/bin/python
44
DEV_STAMP = $(VENV)/.dev_env_installed.stamp
55
INSTALL_STAMP = $(VENV)/.install.stamp
6+
TEMPDIR := $(shell mktemp -d)
67

78
.IGNORE: clean distclean maintainer-clean
89
.PHONY: all install virtualenv tests
@@ -50,3 +51,9 @@ distclean: clean
5051

5152
maintainer-clean: distclean
5253
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

requirements.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)