Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setuptools v59 compliance #621

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.rest
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ Django Facebook by Thierry Schellenbach (`mellowmorning.com <http://www.mellowmo
:target: https://pypi.python.org/pypi/django-facebook


Overview
-------
Facebook open graph API client in Python. Enables django applications to register users using facebook.
Fixes issues with the official but unsupported Facebook python-sdk. Enables mobile facebook authentication.
Canvas page authentication for facebook applications. FQL access via the server side api.


Status
-------
Django and Facebook are both rapidly changing at the moment. Meanwhile, I'm caught up in a startup and don't have much spare time.
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude,
'Environment :: Web Environment',
]

DESCRIPTION = """Facebook open graph API client in python. Enables django applications to register users using facebook.
Fixes issues with the official but unsupported Facebook python-sdk. Enables mobile facebook authentication.
Canvas page authentication for facebook applications. FQL access via the server side api.
"""
DESCRIPTION = "Facebook open graph API client in Python"

download_url = 'https://github.com/tschellenbach/Django-facebook/archive/v%s.tar.gz' % __version__

Expand Down