forked from nsat/tletools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (40 loc) · 1.31 KB
/
Makefile
File metadata and controls
50 lines (40 loc) · 1.31 KB
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
43
44
45
46
47
48
49
50
VERSION = $(shell python ./setup.py --version)
src = $(wildcard tletools/*.py)
dist = dist/TLE-tools-$(VERSION).tar.gz dist/TLE_tools-$(VERSION)-py2.py3-none-any.whl
-include .makerc
.PHONEY: help
help:
@echo "Targets:"
@echo " clean: Removes distribution folders and artifacts from building"
@echo " build: Builds source and (universal) wheel distributions"
@echo " test: Runs pytest against source files in virtual environment"
@echo " upload: Uploads built source and wheel distributions to repository"
@echo " Requires env vars `REPO`, `USER`, `PASSWORD`"
.PHONEY: clean
clean:
rm -rf wheelhouse dist/ build/ __pycache__/ *.egg-info/ tletools/*.pyc venv .pytest_cache/
.PHONEY: build
build: $(dist)
dist/TLE-tools-%.tar.gz: $(src) setup.py
python setup.py sdist
dist/TLE_tools-%-py2.py3-none-any.whl: $(src) setup.py
python setup.py bdist_wheel
.PHONEY: test
test: $(src) setup.py venv
. venv/bin/activate; pip install .; pytest -v
venv: venv/bin/activate
virtualenv venv
.PHONEY: upload
upload: test build check-env
twine upload --repository-url ${REPO} --username ${USER} --password "${PASSWORD}" dist/*
.PHONEY: check-env
check-env:
ifndef REPO
$(error $REPO must be specified)
endif
ifndef USER
$(error USER must be specified)
endif
ifndef PASSWORD
$(error PASSWORD must be specified)
endif