forked from pdkit/pdkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (24 loc) · 806 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
.PHONY: help clean package dev test
help:
@echo "This project assumes that an active Python virtualenv is present."
@echo "The following make targets are available:"
@echo " package create package to upload to pypi"
@echo " dev install all relevant modules"
@echo " test test all relevant modules"
clean:
rm -rf dist/*
dev:
pip install -r requirements.txt
pip install --upgrade pip wheel setuptools twine
pip install git+https://github.com/blue-yonder/tsfresh
pip install -e .
pip freeze
test:
python tests/tremor_processing-test.py
python tests/gait_processing-test.py
python tests/bradykinesia_processing-test.py
python tests/finger_tapping_processing-test.py
python tests/test_result_set-test.py
package:
python setup.py sdist
python setup.py bdist_wheel --universal