typos, added pgp key

This commit is contained in:
Jeffrey Paul 2016-03-24 07:33:35 +01:00
parent c352531f0c
commit e7d17019e3
2 changed files with 13 additions and 12 deletions

View File

@ -24,25 +24,27 @@ log messages on paper and mail them to you.
# Usage # Usage
``` ```python
from sanelogging import log from sanelogging import log
log.info("starting up!") log.info("starting up!")
log.error("something went wrong.") log.error("something went wrong.")
log.die("bailing out") # script exits log.die("bailing out") # exits
``` ```
Author Author
====== ======
Jeffrey Paul <(sneak@sneak.berlin)[mailto:sneak@sneak.berlin]> Jeffrey Paul <sneak@sneak.berlin>
(https://sneak.berlin)[https://sneak.berlin] https://sneak.berlin
(@sneakdotberlin)[https://twitter.com/sneakdotberlin] [@sneakdotberlin](https://twitter.com/sneakdotberlin)
`5539 AD00 DE4C 42F3 AFE1 1575 0524 43F4 DF2A 55C2`
License License
======= =======

View File

@ -1,15 +1,14 @@
from distutils.core import setup from setuptools import setup
setup( setup(
name='sanelogging', name='sanelogging',
version='1.0.0', version='1.0.1',
author='Jeffrey Paul', author='Jeffrey Paul',
author_email='sneak@datavibe.net', author_email='sneak@sneak.berlin',
packages=['sanelogging'], packages=['sanelogging'],
url='http://pypi.python.org/pypi/sanelogging/', url='https://github.com/sneak/sanelogging/',
license='LICENSE.txt', license='Public Domain',
description='Python logging for humans', description='Python logging for humans',
long_description=open('README.md').read(),
install_requires=[ install_requires=[
"colorlog", "colorlog",
], ],