-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
42 lines (33 loc) · 897 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
help:
@echo " env create a development environment using virtualenv"
@echo " deps install dependencies"
@echo " clean remove unwanted stuff"
@echo " lint check style with flake8"
@echo " coverage run tests with code coverage"
@echo " test run tests"
env:
rm -rf env
virtualenv env && \
. env/bin/activate && \
pip install setuptools --upgrade && \
make deps
deps:
pip install -r requirements.txt --use-mirrors
clean:
rm -fr build
rm -fr dist
find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.pyo' -exec rm -f {} \;
find . -name '*~' -exec rm -f {} \;
lint:
flake8 twitter > violations.flake8.txt
coverage:
nosetests --with-coverage --cover-package=twitter
test:
nosetests
build: clean
python setup.py sdist
python setup.py bdist_wheel
upload: clean
python setup.py sdist upload
# python setup.py bdist_wheel upload