Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abdullahashfaqvirk
/
Text-Summarization-App
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abdullahashfaqvirk
commited on
Jan 7
Commit
704e2e9
·
1 Parent(s):
49af644
chore: add Makefile for install, run and format tasks
Browse files
Files changed (1)
hide
show
Makefile
+11
-0
Makefile
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
install:
2
+
pip install --upgrade pip
3
+
pip install -r requirements.txt
4
+
5
+
run:
6
+
python app.py
7
+
8
+
format:
9
+
black *.py
10
+
11
+
all: install format