File: Makefile

package info (click to toggle)
python-marathon 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 384 kB
  • sloc: python: 1,707; makefile: 183; sh: 32
file content (22 lines) | stat: -rw-r--r-- 330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
itests:
	tox -e itest-py27
	tox -e itest-py33

test:
	tox -e pep8
	tox -e test-py27
	tox -e test-py33

clean:
	rm -rf dist/ build/

package: clean
	pip install wheel
	python setup.py sdist bdist_wheel

publish: package
	pip install twine
	twine upload dist/*
	github_changelog_generator

.PHONY: itests test clean package publish