File: Makefile

package info (click to toggle)
sphinxcontrib-phpdomain 0.15.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: python: 758; makefile: 164
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