This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
python-emails/Makefile

14 lines
299 B
Makefile
Raw Permalink Normal View History

2015-02-21 21:56:59 +01:00
clean:
2015-02-27 10:43:18 +01:00
find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.py~' -exec rm -f {} \;
2015-03-01 01:56:48 +01:00
find . -name '__pycache__' -exec rm -rf {} \;
2015-03-14 15:46:23 +01:00
find . -name '.coverage.*' -exec rm -rf {} \;
2015-02-27 10:43:18 +01:00
rm -rf build dist emails.egg-info tmp-emails _files
2015-02-21 21:56:59 +01:00
test:
tox
pypi:
2015-02-25 00:07:58 +01:00
python setup.py sdist bdist_wheel upload