[go: up one dir, main page]

File: Makefile

package info (click to toggle)
dominate 2.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 2,532; makefile: 20
file content (17 lines) | stat: -rw-r--r-- 315 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test:
	-python2 -m pytest .
	python3 -m pytest .

publish_old: clean test
	python3 setup/setup.py sdist
	python3 setup/setup.py bdist_wheel
	python3 -m twine upload dist/*

publish: clean test
	python3 -m build --no-isolation
	python3 -m twine upload dist/*

clean:
	-rm dist/ -r
	-rm build/ -r
	-rm *.egg-info/ -r