about summary refs log tree commit diff stats
path: root/Makefile
blob: 19aef5bf07ec94d841080ec1bf69d79ce5148ed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# author: yuce
# created on 2019-05-03, at: 02:17 +0300

.PHONY: all build clean


all: build

build:
	python setup.py sdist

release: clean build
	twine upload dist/*

clean:
	rm -rf dist build openbsd.egg-info/