Uday Chitragar commited on
Commit
9ad74e8
·
1 Parent(s): eb508cf

template working structure

Browse files
Files changed (4) hide show
  1. Makefile +14 -0
  2. clustering.ipynb +0 -0
  3. prog_1.py +0 -0
  4. requirements.txt +1 -0
Makefile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ install:
2
+ pip install --upgrade pip &&\
3
+ pip install -r requirements.txt
4
+
5
+ test:
6
+ python -m pytest -vv prog_1.py
7
+
8
+ format:
9
+ black *.py
10
+
11
+ lint:
12
+ pylint --disable=R,C prog_1.py
13
+
14
+ all: install lint test
clustering.ipynb ADDED
File without changes
prog_1.py ADDED
File without changes
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ pytest