Skip to content

Commit

Permalink
Merge pull request #10 from beproud/release-0.46
Browse files Browse the repository at this point in the history
bump up version to 0.46
  • Loading branch information
mtb-beta authored Jul 30, 2018
2 parents ba0ac0a + 8e88efb commit fb8a9ef
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
recursive-include beproud/django/notify/tests/templates *
recursive-include beproud/django/notify/templates *
recursive-include beproud/django/notify/fixtures *
include README.md
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[![Build Status](https://travis-ci.org/beproud/bpnotify.svg?branch=master)](https://travis-ci.org/beproud/bpnotify)

`bpnotify` is notification routing for Django. Application notify function with targets, notify_type, media, extra_data, then bpnotify send notify with backend (example: mail).

# Requirements

* Python (2.7, 3.6)
Expand Down
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
#!/usr/bin/env python
#:coding=utf-8:

import os
from setuptools import setup, find_packages

def read_file(filename):
basepath = os.path.dirname(__file__)
filepath = os.path.join(basepath, filename)
with open(filepath) as f:
read_text = f.read()
return read_text


setup(
name='bpnotify',
version='0.45',
version='0.46',
description='Notification routing for Django',
author='BeProud',
author_email='[email protected]',
long_description=read_file('README.md'),
long_description_content_type="text/markdown",
url='https://github.com/beproud/bpnotify/',
classifiers=[
'Development Status :: 3 - Alpha',
Expand All @@ -26,6 +37,7 @@
install_requires=[
'Django>=1.8',
'django-jsonfield>=1.0.1',
'six',
],
tests_require=[
'celery>=4.1',
Expand Down

0 comments on commit fb8a9ef

Please sign in to comment.