forked from cta-observatory/ctapipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
63 lines (49 loc) · 1.58 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Makefile with some convenient quick ways to do common things
PROJECT=ctapipe
PYTHON=python
help:
@echo ''
@echo '$(PROJECT) available make targets:'
@echo ''
@echo ' help Print this help message (the default)'
@echo ' env Create a conda environment for ctapipe development'
@echo ' develop make symlinks to this package in python install dir'
@echo ' clean Remove temp files'
@echo ' test Run tests'
@echo ' doc Generate Sphinx docs'
@echo ' analyze Do a static code check and report errors'
@echo ''
@echo 'Advanced targets (for experts)'
@echo ' conda Build a conda package for distribution'
@echo ' doc-publish Upload docs to static GitHub page'
@echo ''
init:
@echo "'make init' is no longer needed"
clean:
$(RM) -rf build docs/_build docs/api htmlcov ctapipe.egg-info dist
find . -name "*.pyc" -exec rm {} \;
find . -name "*.so" -exec rm {} \;
find . -name __pycache__ | xargs rm -fr
test:
pytest
doc:
cd docs && $(MAKE) html SPHINXOPTS="-W --keep-going -n --color"
@echo "------------------------------------------------"
@echo "Documentation is in: docs/_build/html/index.html"
doc-publish:
ghp-import -n -p -m 'Update gh-pages docs' docs/_build/html
analyze:
@pylint ctapipe --ignored-classes=astropy.units
lint:
@flake8 ctapipe
env:
conda env create -n cta-dev -f environment.yml
source activate cta-dev
develop:
pip install -e .
wheel:
python -m build --wheel
sdist:
python -m build --sdist
trailing-spaces:
find $(PROJECT) examples docs -name "*.py" -exec perl -pi -e 's/[ \t]*$$//' {} \;