File: Makefile

package info (click to toggle)
python-digitalocean 1.16.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 912 kB
  • sloc: python: 4,961; makefile: 46
file content (27 lines) | stat: -rw-r--r-- 408 bytes parent folder | download
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
clean:
	rm -rf build 
	rm -rf dist 
	rm -rf python_digitalocean.egg-info 
	rm -rf .pytest_cache
.PHONY: clean

dist:
	python setup.py sdist bdist_wheel

publish: dist
	twine upload dist/*
.PHONY: publish

publish_deps:
	python -m pip install --upgrade pip
	pip install setuptools wheel twine
.PHONY: publish_deps

deps:
	pip install -U -r requirements.txt
.PHONY: deps

test:
	python -m pytest
.PHONY: test