-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (26 loc) · 765 Bytes
/
Makefile
File metadata and controls
38 lines (26 loc) · 765 Bytes
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
clean-pyc:
find . -name '*.pyc' -delete
clean-build:
rm -rf build
rm -rf *.egg-info
clean-virtual-environment:
rm -rf venv
lint:
flake8 --exclude=.tox
build-readme:
/usr/bin/env pandoc -s -r markdown -w rst README.md -o README.rst
build-sdist: clean-build build-readme
/usr/bin/env python setup.py sdist
build-wheel: clean-build build-readme
pip install -U wheel
/usr/bin/env python setup.py bdist_wheel --universal
build-rpm: clean-build build-readme
pip install -U wheel
/usr/bin/env python setup.py bdist --format=rpm
release: build-wheel
wheel: build-wheel
virtual-environment:
/usr/bin/env python -m virtualenv venv
development-mode: virtual-environment
venv/bin/pip install -e .
clean: clean-pyc clean-build clean-virtual-environment