Skip to content

Commit 431d1a7

Browse files
committed
fixed readme badges
1 parent 9df7011 commit 431d1a7

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ build:
1111
pypi: clean build
1212
twine upload dist/* -r testpypi
1313

14+
pypi-real: clean build
15+
@read -r -p "Are you sure? " INPUT; \
16+
if [ "$$INPUT" != "y" ] ; then exit 1 ; fi
17+
twine upload dist/*
18+
1419
clean:
1520
find . -type f -name '*~' -delete
1621
find . -type f -name '*.o' -delete

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[//]: # (-*- coding: utf-8 -*-)
22

33
[![Travis](https://img.shields.io/travis/tuxberlin/python-keyctl/master.svg)](https://travis-ci.org/tuxberlin/python-keyctl)
4-
[![PyPI](https://img.shields.io/pypi/v/keyctl.svg)](https://pypi.python.org/pypi/keyctl)
5-
[![PyPI](https://img.shields.io/pypi/pyversions/keyctl.svg)](https://pypi.python.org/pypi/keyctl)
6-
[![license](https://img.shields.io/github/license/tuxberlin/python-keyctl.svg)](https://raw.githubusercontent.com/tuxberlin/python-keyctl/master/LICENSE)
4+
[![PyPI Package version](https://img.shields.io/pypi/v/keyctl.svg)](https://pypi.python.org/pypi/keyctl)
5+
[![PyPI Python version](https://img.shields.io/pypi/pyversions/keyctl.svg)](https://pypi.python.org/pypi/keyctl)
6+
[![License](https://img.shields.io/github/license/tuxberlin/python-keyctl.svg)](https://raw.githubusercontent.com/tuxberlin/python-keyctl/master/LICENSE)
77

88

99
# python-keyctl

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='keyctl',
16-
version='0.1',
16+
version='0.2',
1717
description='Wrapper to use keyctl command in Python',
1818
long_description=readme,
1919
author='Martin Becker',

0 commit comments

Comments
 (0)