-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix the build (line to long error). Co-authored-by: Patric Theune <[email protected]>
- Loading branch information
Showing
4 changed files
with
25 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
echo Create Virtual Environment | ||
python3 -m venv venv | ||
|
||
echo Activate Virtual Environment | ||
source venv/bin/activate | ||
|
||
# Why is development mode necessary ? | ||
pip install -e . | ||
|
||
echo Prepare requirements within the Virtual Environments | ||
venv/bin/pip install -r dev_requirements.txt | ||
|
||
echo Install setup.py | ||
python setup.py build install | ||
|
||
make | ||
|
||
echo Deactivate Virtual Environment | ||
deactivate |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mock | ||
pygments==2.3.1 | ||
nose | ||
pycodestyle | ||
wheel | ||
|
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