tqdm/Makefile

35 lines
675 B
Makefile
Raw Normal View History

.PHONY: all flake8 test coverage
2015-06-15 09:02:33 +00:00
alltests: test coverage flake8 testsetup
all: alltests build
2015-06-15 09:02:33 +00:00
flake8:
flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
flake8 --max-line-length=80 --count --statistics --exit-zero examples/
2015-06-15 09:02:33 +00:00
test:
nosetests tqdm -v
testsetup:
python setup.py check --restructuredtext --strict
2015-06-15 09:02:33 +00:00
coverage:
nosetests tqdm --with-coverage --cover-package=tqdm -v
installdev:
python setup.py develop --uninstall
python setup.py develop
install:
python setup.py install
build:
python setup.py sdist --formats=gztar,zip bdist_wininst
python setup.py sdist bdist_wheel
pypimeta:
python setup.py register
pypi:
twine upload dist/*