Skip to content

Commit

Permalink
Fixes README and bumps version
Browse files Browse the repository at this point in the history
  • Loading branch information
volker48 committed Jan 14, 2016
1 parent 5dcd55c commit 0cd074e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
Flask-StatsD
============
Flask-Datadog
=============

This is a simple Flask extension that allows to access statsd in your Flask application.
This is a simple Flask extension that allows to access DogStatsd in your Flask application. It has an API
compatible with Flask-StatsD


Installation
------------

To install it, simply: ::

pip install Flask-StatsD
pip install Flask-Datadog


Usage
Expand All @@ -18,7 +19,7 @@ Usage
You only need to import and initialize your app ::

from flask import Flask
from flask.ext.statsd import StatsD
from flask.ext.datadog import StatsD

app = Flask(__name__)
app.config['STATSD_HOST'] = 'statsd.local'
Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup

setup(
name='Flask-DogStatsD',
version='0.1.0',
url='https://github.com/50onRed/flask-dogstatsd.git',
name='Flask-Datadog',
version='0.1.1',
url='https://github.com/50onRed/flask-datadog.git',
license='BSD',
author='50onRed',
author_email='dev@50onred.com',
author_email='marcus.mccurdy@gmail.com',
description='Access to dogstatsd in your app.',
py_modules=['flask_dogstatsd'],
py_modules=['flask_datadog'],
zip_safe=False,
include_package_data=True,
platforms='any',
Expand Down

0 comments on commit 0cd074e

Please sign in to comment.