-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stefan Lehmann
committed
Jun 22, 2017
1 parent
cf3331b
commit 6d1391f
Showing
6 changed files
with
62 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,3 +91,4 @@ ENV/ | |
doc/_build/* | ||
*.crt | ||
.mypy_cache/* | ||
venv_*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.PHONY: all check clean | ||
|
||
|
||
objects = $(wildcard *.in) | ||
outputs = $(objects:.in=.txt) | ||
|
||
|
||
all: $(outputs) | ||
|
||
|
||
%.txt: %.in | ||
pip-compile -v -U --output-file $@ $< | ||
|
||
|
||
develop.txt: base.txt | ||
|
||
|
||
check: | ||
@which pip-compile > /dev/null | ||
|
||
|
||
clean: | ||
-rm *.txt |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-r base.txt | ||
pip-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile --output-file develop.txt develop.in | ||
# | ||
click==6.7 | ||
dominate==2.3.1 | ||
enum-compat==0.0.2 | ||
enum34==1.1.6 | ||
eventlet==0.21.0 | ||
first==2.0.1 # via pip-tools | ||
flask-bootstrap==3.3.7.1 | ||
flask-mqtt==0.0.5 | ||
flask-socketio==2.8.6 | ||
flask==0.12.2 | ||
greenlet==0.4.12 | ||
itsdangerous==0.24 | ||
jinja2==2.9.6 | ||
markupsafe==1.0 | ||
paho-mqtt==1.3.0 | ||
pip-tools==1.9.0 | ||
python-engineio==1.5.4 | ||
python-socketio==1.7.5 | ||
six==1.10.0 | ||
typing==3.6.1 | ||
visitor==0.1.3 | ||
werkzeug==0.12.2 |