tqdm/Makefile

37 lines
696 B
Makefile
Raw Normal View History

.PHONY: all flake8 test coverage
2015-06-15 09:02:33 +00:00
alltests: testcoverage 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
testcoverage:
2015-06-15 09:02:33 +00:00
nosetests tqdm --with-coverage --cover-package=tqdm -v
allenvtests: tox
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/*