cChardet/Makefile
2016-10-17 23:21:48 +09:00

18 lines
392 B
Makefile

test:
python setup.py nosetests
clean:
$(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
install: clean
python setup.py install