File: Makefile

package info (click to toggle)
python-envparse 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: python: 302; makefile: 15
file content (15 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SHELL := /bin/bash

help:
	@echo 'Makefile for envparse'
	@echo ''
	@echo 'Usage:'
	@echo '   make release      push to the PyPI'
	@echo '   make test         run the test suite'
	@echo ''

release:
	python setup.py register sdist bdist_wheel upload

test:
	tox