From e7d17019e3c796e93989f17f817015ab503b3521 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Thu, 24 Mar 2016 07:33:35 +0100 Subject: [PATCH] typos, added pgp key --- README.md | 14 ++++++++------ setup.py | 11 +++++------ 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c4c0982..e82a9e2 100644 --- a/README.md +++ b/README.md @@ -24,25 +24,27 @@ log messages on paper and mail them to you. # Usage -``` +```python + from sanelogging import log log.info("starting up!") log.error("something went wrong.") -log.die("bailing out") # script exits - +log.die("bailing out") # exits ``` Author ====== -Jeffrey Paul <(sneak@sneak.berlin)[mailto:sneak@sneak.berlin]> +Jeffrey Paul -(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 ======= diff --git a/setup.py b/setup.py index 55a6282..57ddef2 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,14 @@ -from distutils.core import setup +from setuptools import setup setup( name='sanelogging', - version='1.0.0', + version='1.0.1', author='Jeffrey Paul', - author_email='sneak@datavibe.net', + author_email='sneak@sneak.berlin', packages=['sanelogging'], - url='http://pypi.python.org/pypi/sanelogging/', - license='LICENSE.txt', + url='https://github.com/sneak/sanelogging/', + license='Public Domain', description='Python logging for humans', - long_description=open('README.md').read(), install_requires=[ "colorlog", ],