diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-10-27 20:59:17 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-10-27 20:59:17 +0100 |
| commit | 282de79f44e95b539c1788de8a71177b5a023557 (patch) | |
| tree | 6a6a26e210dc32d4d6a5ed4d8bc0b581af9bbc0e /Makefile | |
| parent | [WIP] Provider for Taylor and Francis Online (diff) | |
| parent | Bump version and update changelog (diff) | |
| download | paper2remarkable-282de79f44e95b539c1788de8a71177b5a023557.tar.gz paper2remarkable-282de79f44e95b539c1788de8a71177b5a023557.zip | |
Merge branch 'master' into feature/tandfonline
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,7 +7,7 @@ PACKAGE=paper2remarkable DOC_DIR='./docs/' VENV_DIR=/tmp/p2r_venv/ -.PHONY: help cover dist venv +.PHONY: help dist venv .DEFAULT_GOAL := help @@ -48,15 +48,15 @@ doc: install ## Build documentation with Sphinx cd $(DOC_DIR) && \ rm source/* && \ source $(VENV_DIR)/bin/activate && \ - sphinx-apidoc -H 'CleverCSV API Documentation' -o source ../$(PACKAGE) && \ + sphinx-apidoc -H 'Paper2Remarkable API Documentation' -o source ../$(PACKAGE) && \ touch source/AUTOGENERATED $(MAKE) -C $(DOC_DIR) html venv: $(VENV_DIR)/bin/activate $(VENV_DIR)/bin/activate: - test -d $(VENV_DIR) || virtualenv $(VENV_DIR) - source $(VENV_DIR)/bin/activate && pip install -e .[dev] && pip install six + test -d $(VENV_DIR) || python -m venv $(VENV_DIR) + source $(VENV_DIR)/bin/activate && pip install -e .[dev] touch $(VENV_DIR)/bin/activate clean_venv: |
