typos, added pgp key
This commit is contained in:
parent
c352531f0c
commit
e7d17019e3
14
README.md
14
README.md
|
@ -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
|
||||||
=======
|
=======
|
||||||
|
|
11
setup.py
11
setup.py
|
@ -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",
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue