chore: scaffold initial project with gitignore, makefile, readme, and pyproject.toml
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
PYTHON=.venv/bin/python
|
||||
PIP=.venv/bin/pip
|
||||
DOWNIE=.venv/bin/downie
|
||||
|
||||
|
||||
install:
|
||||
sudo apt install python3 python3-venv python3-pip -y
|
||||
python3 -m venv .venv
|
||||
${PIP} install -e .
|
||||
@ln -s ${DOWNIE} downie || true
|
||||
@echo "Installed downie. Use by executing ./downie [your url to downie]"
|
||||
|
||||
build:
|
||||
${PIP} install build
|
||||
${PYTHON} -m build .
|
||||
|
||||
example:
|
||||
${DOWNIE} https://www.molodetz.nl
|
||||
Reference in New Issue
Block a user