.PHONY: install run deploy install: pip install -r requirements.txt run: python app.py deploy: python3 -c "\ from huggingface_hub import HfApi; \ api = HfApi(); \ api.upload_folder(folder_path='.', repo_id='gpthuman/ai-humanizer', repo_type='space'); \ print('Deployed to https://huggingface.co/spaces/gpthuman/ai-humanizer')"