Skip to content

Commit

Permalink
Add a known working set.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Mar 8, 2016
1 parent 12a7656 commit fa28ec4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ VENV := $(shell echo $${VIRTUAL_ENV-.venv})
PYTHON = $(VENV)/bin/python
DEV_STAMP = $(VENV)/.dev_env_installed.stamp
INSTALL_STAMP = $(VENV)/.install.stamp
TEMPDIR := $(shell mktemp -d)

.IGNORE: clean distclean maintainer-clean
.PHONY: all install virtualenv tests
Expand Down Expand Up @@ -50,3 +51,9 @@ distclean: clean

maintainer-clean: distclean
rm -fr .venv/ .tox/

build-requirements:
$(VIRTUALENV) $(TEMPDIR)
$(TEMPDIR)/bin/pip install -U pip
$(TEMPDIR)/bin/pip install -Ue .
$(TEMPDIR)/bin/pip freeze > requirements.txt
13 changes: 13 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
cffi==1.5.2
cryptography==1.2.3
enum34==1.1.2
idna==2.0
ipaddress==1.0.16
-e git+git@github.com:Kinto/kinto.py.git@12a76561fba75ebd884040f3a31d6d88d5c1fdc8#egg=kinto_client
ndg-httpsclient==0.4.0
pyasn1==0.1.9
pycparser==2.14
pyOpenSSL==0.15.1
requests==2.9.1
six==1.10.0
Unidecode==0.4.19

0 comments on commit fa28ec4

Please sign in to comment.