make automates all tests by default, version changed to 2.0 in anticipation of pypi

This commit is contained in:
Casper da Costa-Luis 2015-06-18 15:58:29 +01:00 committed by Casper da Costa-Luis
parent f6ed2b7f06
commit 8ac163e1e7
2 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,8 @@
.PHONY: flake8 test coverage .PHONY: all flake8 test coverage
all: flake8 coverage
flake8: flake8:
flake8 --exclude "test_*" --max-line-length=80 --count --statistics --exit-zero tqdm/ flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
test: test:
nosetests tqdm -v nosetests tqdm -v

View File

@ -4,7 +4,7 @@ from setuptools import setup
setup( setup(
name='tqdm', name='tqdm',
version='1.0', version='2.0',
description='A Simple Python Progress Meter', description='A Simple Python Progress Meter',
license='MIT License', license='MIT License',
author='Noam Yorav-Raphael', author='Noam Yorav-Raphael',