Skip to content

Commit

Permalink
modify to be installed via pip
Browse files Browse the repository at this point in the history
  • Loading branch information
sfujiwara committed Sep 1, 2016
1 parent 172cbdf commit 9d10b7c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

gjhandler is a simple log handler which generates new line delimited JSON for Cloud Logging and [google-fluentd](https://cloud.google.com/logging/docs/agent/).

## Installation

```
pip install git+https://github.com/sfujiwara/gjhandler.git
```


## Example

```python
Expand Down
File renamed without changes.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# coding: utf-8

from setuptools import setup, find_packages

setup(
name="gjhandler",
description="Python log handler for Cloud Logging",
version="0.1.0",
license="MIT",
author="Shuhei Fujiwara",
author_email='shuhei.fujiwara@gmail.com',
url='https://github.com/sfujiwara/gjhandler',
packages=find_packages(),
)

0 comments on commit 9d10b7c

Please sign in to comment.