File: Makefile

package info (click to toggle)
python-marathon 0.13.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 460 kB
  • sloc: python: 1,969; makefile: 185; sh: 58
file content (30 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
itests: itests-py36 itests-py37

itests-py36:
	tox -e itest-py36

itests-py37:
	tox -e itest-py37

test: test-py36 test-py37

test-py36:
	tox -e pep8
	tox -e test-py36

test-py37:
	tox -e test-py37

clean:
	rm -rf dist/ build/

package: clean
	github_changelog_generator --user=thefactory --project=marathon-python --future-release=0.13.0
	pip install wheel
	python setup.py sdist bdist_wheel

publish: package
	pip install twine
	twine upload dist/*

.PHONY: itests test clean package publish