Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
fpytloun committed Jun 8, 2015
1 parent aef3374 commit 85fc3f9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
db.sqlite3
.ropeproject
dist
build
*.egg-info
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include README.rst
include LICENSE
recursive-include xmpp *
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ Optionally setup ConverseJS to suit your needs::
}
}

Include ``xmpp.urls`` in your ``urls.py``::

urlpatterns = [
...
url(r'^xmpp/', include("xmpp.urls")),
]

Use ConverseJS in your base template::

{% load xmpp_tags %}
Expand Down
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@

setup(
name='django-xmpp',
version='0.1',
version='0.2',
description='XMPP integration for Django app made simple',
long_description=readme,
author="Filip Pytloun",
author_email='[email protected]',
url='https://github.com/fpytloun/django-xmpp',
license='GPLv2',
packages=['xmpp'],
packages=['xmpp', 'xmpp.templatetags', 'xmpp.management',
'xmpp.management.commands'],
include_package_data=True,
install_requires=['django', 'sleekxmpp', 'dnspython', 'pyasn1',
'pyasn1_modules', 'django-gravatar2'],
Expand Down

0 comments on commit 85fc3f9

Please sign in to comment.