-
Notifications
You must be signed in to change notification settings - Fork 20
/
Makefile
64 lines (52 loc) · 1.49 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
64
.PHONY: clean
clean:
find . -name '*.pyo' -delete
find . -name '*.pyc' -delete
find . -name __pycache__ -delete
find . -name '*~' -delete
find . -name '.coverage.*' -delete
.PHONY: lint
lint:
python docs/notebook_version_standardizer.py check-execution
ruff check . --config=./pyproject.toml
ruff format . --check --config=./pyproject.toml
.PHONY: lint-fix
lint-fix:
python docs/notebook_version_standardizer.py standardize
ruff check . --fix --config=./pyproject.toml
ruff format . --config=./pyproject.toml
.PHONY: test
test:
pytest woodwork/
.PHONY: testcoverage
testcoverage:
pytest woodwork/ --cov=woodwork
.PHONY: installdeps
installdeps: upgradepip
pip install -e .
.PHONY: installdeps-dev
installdeps-dev: upgradepip
pip install -e ".[dev]"
pre-commit install
.PHONY: installdeps-test
installdeps-test: upgradepip
pip install -e ".[test]"
.PHONY: checkdeps
checkdeps:
$(eval allow_list='numpy|pandas|scikit|click|pyarrow')
pip freeze | grep -v "woodwork.git" | grep -E $(allow_list) > $(OUTPUT_FILEPATH)
.PHONY: upgradepip
upgradepip:
python -m pip install --upgrade pip
.PHONY: upgradebuild
upgradebuild:
python -m pip install --upgrade build
.PHONY: upgradesetuptools
upgradesetuptools:
python -m pip install --upgrade setuptools
.PHONY: package
package: upgradepip upgradebuild upgradesetuptools
python -m build
$(eval PACKAGE=$(shell python -c 'import setuptools; setuptools.setup()' --version))
tar -zxvf "dist/woodwork-${PACKAGE}.tar.gz"
mv "woodwork-${PACKAGE}" unpacked_sdist