File: Makefile

package info (click to toggle)
sphinxcontrib-phpdomain 0.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 588 kB
  • sloc: python: 811; makefile: 162
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
clean:
	rm -rf ./dist ./build
.PHONY: clean

package:
	python -m build
.PHONY: package

upload:
	twine upload dist/sphinxcontrib*
.PHONY: upload