2015-11-01 16:01:18 +00:00
|
|
|
# IMPORTANT: for compatibility with `python setup.py make [alias]`, ensure:
|
2015-11-07 18:01:28 +00:00
|
|
|
# 1. Every alias is preceded by @make (eg: @make alias)
|
2015-11-07 23:11:02 +00:00
|
|
|
# 2. A maximum of one @make alias or command per line
|
2015-11-07 18:01:28 +00:00
|
|
|
#
|
|
|
|
# Sample makefile compatible with `python setup.py make`:
|
|
|
|
#```
|
|
|
|
#all:
|
|
|
|
# @make test
|
|
|
|
# @make install
|
|
|
|
#test:
|
|
|
|
# nosetest
|
|
|
|
#install:
|
|
|
|
# python setup.py install
|
|
|
|
#```
|
2015-10-15 13:47:02 +00:00
|
|
|
|
|
|
|
.PHONY:
|
|
|
|
alltests
|
2015-10-31 11:38:53 +00:00
|
|
|
all
|
2015-10-15 13:47:02 +00:00
|
|
|
flake8
|
2015-10-31 11:38:53 +00:00
|
|
|
test
|
|
|
|
testnose
|
2015-10-15 13:47:02 +00:00
|
|
|
testsetup
|
2015-10-31 11:38:53 +00:00
|
|
|
testcoverage
|
|
|
|
installdev
|
|
|
|
install
|
|
|
|
build
|
|
|
|
pypimeta
|
|
|
|
pypi
|
|
|
|
none
|
|
|
|
|
|
|
|
alltests:
|
|
|
|
@make testcoverage
|
|
|
|
@make flake8
|
|
|
|
@make testsetup
|
2015-10-15 13:47:02 +00:00
|
|
|
|
|
|
|
all:
|
2015-10-31 11:38:53 +00:00
|
|
|
@make alltests
|
|
|
|
@make build
|
2015-10-13 13:15:11 +00:00
|
|
|
|
2015-06-15 09:02:33 +00:00
|
|
|
flake8:
|
2015-06-18 14:58:29 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
|
2015-09-14 15:28:07 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero examples/
|
2015-11-01 16:01:18 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero .
|
2015-11-10 23:33:10 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/tests/
|
2015-06-15 09:02:33 +00:00
|
|
|
|
|
|
|
test:
|
2015-10-13 22:42:01 +00:00
|
|
|
tox --skip-missing-interpreters
|
|
|
|
|
|
|
|
testnose:
|
2015-06-15 09:02:33 +00:00
|
|
|
nosetests tqdm -v
|
|
|
|
|
2015-10-13 13:15:11 +00:00
|
|
|
testsetup:
|
|
|
|
python setup.py check --restructuredtext --strict
|
2015-10-15 15:13:07 +00:00
|
|
|
python setup.py make none
|
2015-10-13 13:15:11 +00:00
|
|
|
|
2015-10-13 13:34:14 +00:00
|
|
|
testcoverage:
|
2015-10-29 10:34:47 +00:00
|
|
|
rm -f .coverage # coverage erase
|
2015-06-15 09:02:33 +00:00
|
|
|
nosetests tqdm --with-coverage --cover-package=tqdm -v
|
2015-10-13 13:15:11 +00:00
|
|
|
|
|
|
|
installdev:
|
|
|
|
python setup.py develop --uninstall
|
|
|
|
python setup.py develop
|
|
|
|
|
|
|
|
install:
|
|
|
|
python setup.py install
|
|
|
|
|
|
|
|
build:
|
2015-11-07 18:01:28 +00:00
|
|
|
python -c "import shutil; shutil.rmtree('build', True)"
|
|
|
|
python -c "import shutil; shutil.rmtree('dist', True)"
|
2015-11-07 23:11:02 +00:00
|
|
|
python -c "import shutil; shutil.rmtree('tqdm.egg-info', True)"
|
2015-10-13 13:15:11 +00:00
|
|
|
python setup.py sdist --formats=gztar,zip bdist_wininst
|
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
|
|
|
|
pypimeta:
|
|
|
|
python setup.py register
|
|
|
|
|
|
|
|
pypi:
|
|
|
|
twine upload dist/*
|
2015-10-15 13:47:02 +00:00
|
|
|
|
2015-11-07 18:01:28 +00:00
|
|
|
buildupload:
|
2015-11-07 18:09:57 +00:00
|
|
|
@make testsetup
|
2015-11-07 18:01:28 +00:00
|
|
|
@make build
|
|
|
|
@make pypimeta
|
|
|
|
@make pypi
|
|
|
|
|
2015-10-15 13:47:02 +00:00
|
|
|
none:
|
2015-10-31 11:38:53 +00:00
|
|
|
# used for unit testing
|