Skip to content

Commit 0d1f438

Browse files
committed
Initial Commit
1 parent 4d200bb commit 0d1f438

File tree

6 files changed

+34
-1
lines changed

6 files changed

+34
-1
lines changed

Diff for: Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
install:
2+
pip install --upgrade pip &&\
3+
pip install -r requirements.txt
4+
test:
5+
python -m pytest -vv --cov=main --cov=mylib test_*.py
6+
format:
7+
black *.py
8+
lint:
9+
pylint --disable=R,C *.py mylib/*.py
10+
refactor: format lint
11+
deploy:
12+
# deploy goes here
13+
all: install lint test format deploy

Diff for: README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
# template
1+
# template
2+
3+
```
4+
python -m venv .venv
5+
source .venv/bin/activate
6+
```
7+
8+
```
9+
make install
10+
```
11+
12+
```
13+
git add .
14+
git commit -m "Initial Commit"
15+
git push
16+
```

Diff for: main.py

Whitespace-only changes.

Diff for: notebook.ipynb

Whitespace-only changes.

Diff for: requirements.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
black
2+
click
3+
pytest
4+
pytest-cov
5+
pylint

Diff for: test_main.py

Whitespace-only changes.

0 commit comments

Comments
 (0)