File: Makefile

package info (click to toggle)
python-asgiref 3.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 440 kB
  • sloc: python: 2,761; makefile: 19
file content (8 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
.PHONY: release clean

clean:
	rm -rf build/ dist/ asgiref.egg-info/

release: clean
	python3 -m build
	python3 -m twine upload dist/*