mirror of https://github.com/tqdm/tqdm.git
make automates all tests by default, version changed to 2.0 in anticipation of pypi
This commit is contained in:
parent
f6ed2b7f06
commit
8ac163e1e7
5
Makefile
5
Makefile
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue