Spaces:
Sleeping
Sleeping
Uday Chitragar commited on
Commit ·
9ad74e8
1
Parent(s): eb508cf
template working structure
Browse files- Makefile +14 -0
- clustering.ipynb +0 -0
- prog_1.py +0 -0
- 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
|