Skip to content

Commit

Permalink
Add a know working set of dependencies for the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Jun 21, 2017
1 parent 52b384e commit d4f2567
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
VIRTUALENV = virtualenv
TEMPDIR := $(shell mktemp -d)

develop:
python setup.py develop

Expand All @@ -6,3 +9,9 @@ demo:
(cd demo; python setup.py develop)
demo migrate
demo runserver

build-requirements:
$(VIRTUALENV) $(TEMPDIR)
$(TEMPDIR)/bin/pip install -U pip
$(TEMPDIR)/bin/pip install -Ue "."
$(TEMPDIR)/bin/pip freeze | grep -v -- '-e' > requirements-release.txt
8 changes: 8 additions & 0 deletions requirements-release.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
asn1crypto==0.22.0
cffi==1.10.0
cryptography==1.9
idna==2.5
pycparser==2.17
pyOpenSSL==17.0.0
python-dateutil==2.6.0
six==1.10.0

0 comments on commit d4f2567

Please sign in to comment.