forked from tsznxx/PyCircos
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
33 lines (30 loc) · 824 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
30
.PHONY: hlep pre lint install test clean
.DEFAULT: help
help:
@echo "----------------------------------------"
@echo "PyCircos"
@echo "Design For NGS Circos Plot Within Python"
@echo "----------------------------------------"
@echo "make help"
@echo "\tprint this help info to screen"
@echo "make pre"
@echo "\tinstall needed env, use only once"
@echo "make lint"
@echo "\trun pylint to format all file"
@echo "make install"
@echo "\tinstall pycircos"
@echo "make test"
@echo "\trun a test demo"
@echo "make clean"
@echo "\tclean temp cache and unusing file"
pre:
python3 -m pip install -r ./requirements.txt
lint:
python3 -m pip install pylint
python3 -m pylint
install:pre
python3 ./setup.py install
test:
python3 ./test/test.py
clean:
@rm -rf ./build ./dist ./pycircos.egg-info