Skip to content

Commit

Permalink
Package structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitar committed Jun 5, 2012
1 parent e58ab90 commit 2fe8635
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
recursive-include pushserver/static *
include docs/Makefile docs/*.py docs/*.rst
include COPYING
include LICENSE
include *.py *.txt *.rst
14 changes: 14 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
django-pushserver
=================

This Django application provides a push server for Django_ based on Leo
Ponomarev's `Basic HTTP Push Relay Protocol`_. Useful especially while locally
developing Django applications using `Nginx HTTP push module`_.

.. _Django: https://www.djangoproject.com/
.. _Basic HTTP Push Relay Protocol: http://pushmodule.slact.net/protocol.html
.. _Nginx HTTP push module: http://pushmodule.slact.net/

Documentation is found at:

http://django-pushserver.readthedocs.org/
7 changes: 0 additions & 7 deletions README.txt

This file was deleted.

10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os

from setuptools import setup, find_packages
Expand All @@ -9,17 +11,13 @@
name = 'django-pushserver',
version = VERSION,
description = "Push server for Django based on Leo Ponomarev's Basic HTTP Push Relay Protocol.",
long_description = open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(),
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = 'Mitar',
author_email = 'mitar.django@tnode.com',
url = 'https://github.com/mitar/django-pushserver',
license = 'AGPLv3',
packages = find_packages(),
package_data = {
'pushserver' : [
'static/pushserver/*',
],
},
package_data = {},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down

0 comments on commit 2fe8635

Please sign in to comment.