Basic project setup
This commit is contained in:
parent
48f2af8716
commit
0564f2a66f
3 changed files with 15 additions and 0 deletions
7
build.sh
Normal file
7
build.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
pyvenv env
|
||||
|
||||
env/bin/pip install -r requirements.txt
|
8
circle.yml
Normal file
8
circle.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
machine:
|
||||
python:
|
||||
version: 3.6.0
|
||||
|
||||
|
||||
dependencies:
|
||||
override:
|
||||
- bash build.sh
|
0
requirements.txt
Normal file
0
requirements.txt
Normal file
Reference in a new issue