~dricottone/neopaste

ref: e26ade8ebc595247ef47e7616f2abd6aa2fafb09 neopaste/Makefile -rw-r--r-- 331 bytes
e26ade8eDominic Ricottone Initial commit 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
python = python3

clean:
	rm -rf **/__pycache__ **/__mypycache__ **/*.pyc build dist neopaste.egg-info

test:
	$(python) -m py_compile neopaste/*.py

build:
	gap neopaste/cli.toml -o neopaste/cli.py
	$(python) setup.py sdist bdist_wheel

reinstall: uninstall install

install:
	pipx install .

uninstall:
	pipx uninstall neopaste