Add shields to repo (#37)
* add shields to repo and iterate version * fix line breakpull/38/head v1.4.5
parent
f65248f797
commit
6df2cb9d79
|
@ -1,4 +1,6 @@
|
||||||
# pinhook
|
# pinhook
|
||||||
|
[![Supported Python versions](https://img.shields.io/pypi/pyversions/pinhook.svg)](https://pypi.org/project/pinhook) [![Package License](https://img.shields.io/pypi/l/pinhook.svg)](https://github.com/archangelic/pinhook/blob/master/LICENSE) [![PyPI package format](https://img.shields.io/pypi/format/pinhook.svg)](https://pypi.org/project/pinhook) [![Package development status](https://img.shields.io/pypi/status/pinhook.svg)](https://pypi.org/project/pinhook) [![With love from tilde.town](https://img.shields.io/badge/with%20love%20from-tilde%20town-e0b0ff.svg)](https://tilde.town)
|
||||||
|
|
||||||
the pluggable python framework for IRC bots and Twitch bots
|
the pluggable python framework for IRC bots and Twitch bots
|
||||||
|
|
||||||
## Tutorial
|
## Tutorial
|
||||||
|
|
14
README.rst
14
README.rst
|
@ -1,6 +1,9 @@
|
||||||
pinhook
|
pinhook
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|Supported Python versions| |Package License| |PyPI package format|
|
||||||
|
|Package development status| |With love from tilde.town|
|
||||||
|
|
||||||
the pluggable python framework for IRC bots and Twitch bots
|
the pluggable python framework for IRC bots and Twitch bots
|
||||||
|
|
||||||
Tutorial
|
Tutorial
|
||||||
|
@ -121,3 +124,14 @@ repository.
|
||||||
|
|
||||||
For a live and maintained bot running the current version of pinhook see
|
For a live and maintained bot running the current version of pinhook see
|
||||||
`pinhook-tilde <https://github.com/archangelic/pinhook-tilde>`__.
|
`pinhook-tilde <https://github.com/archangelic/pinhook-tilde>`__.
|
||||||
|
|
||||||
|
.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/pinhook.svg
|
||||||
|
:target: https://pypi.org/project/pinhook
|
||||||
|
.. |Package License| image:: https://img.shields.io/pypi/l/pinhook.svg
|
||||||
|
:target: https://github.com/archangelic/pinhook/blob/master/LICENSE
|
||||||
|
.. |PyPI package format| image:: https://img.shields.io/pypi/format/pinhook.svg
|
||||||
|
:target: https://pypi.org/project/pinhook
|
||||||
|
.. |Package development status| image:: https://img.shields.io/pypi/status/pinhook.svg
|
||||||
|
:target: https://pypi.org/project/pinhook
|
||||||
|
.. |With love from tilde.town| image:: https://img.shields.io/badge/with%20love%20from-tilde%20town-e0b0ff.svg
|
||||||
|
:target: https://tilde.town
|
||||||
|
|
9
setup.py
9
setup.py
|
@ -73,7 +73,7 @@ class UploadCommand(Command):
|
||||||
# Where the magic happens:
|
# Where the magic happens:
|
||||||
setup(
|
setup(
|
||||||
name=NAME,
|
name=NAME,
|
||||||
version='1.4.4',
|
version='1.4.5',
|
||||||
description=DESCRIPTION,
|
description=DESCRIPTION,
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
author=AUTHOR,
|
author=AUTHOR,
|
||||||
|
@ -87,14 +87,13 @@ setup(
|
||||||
# Trove classifiers
|
# Trove classifiers
|
||||||
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 2.6',
|
'Programming Language :: Python :: 3 :: only',
|
||||||
'Programming Language :: Python :: 2.7',
|
|
||||||
'Programming Language :: Python :: 3',
|
|
||||||
'Programming Language :: Python :: 3.3',
|
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
],
|
],
|
||||||
# $ setup.py publish support.
|
# $ setup.py publish support.
|
||||||
cmdclass={
|
cmdclass={
|
||||||
|
|
Loading…
Reference in New Issue