File: Makefile

package info (click to toggle)
python-ssdpy 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 272 kB
  • sloc: python: 844; makefile: 29
file content (14 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: clean
clean:
	rm -rf dist \
		   ssdpy/__pycache__ \
		   ssdpy/*.pyc \
		   ssdpy.egg-info \
		   tests/*.pyc \
		   build


.PHONY: release
release: clean
	python setup.py sdist bdist_wheel
	twine upload dist/*