cChardet/Makefile

16 lines
351 B
Makefile
Raw Normal View History

2016-10-17 03:19:24 +00:00
test:
2016-10-17 14:05:20 +00:00
python setup.py nosetests
2016-10-17 03:19:24 +00:00
clean:
2016-10-17 06:32:41 +00:00
$(RM) -r build dist src/cchardet/__pycache__ src/cchardet/*.cpp src/cchardet/*.pyc src/cchardet/*.so src/cchardet.egg-info src/tests/__pycache__ src/tests/*.pyc
sdist: clean
python setup.py sdist
pip:
pip install -U pip cython tox nose chardet
twine:
twine upload dist/*.whl
twine upload dist/*.tar.gz