Skip to content

Commit

Permalink
assorted 0.1.0 version cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ptone committed Mar 8, 2011
1 parent 9808aed commit 1f2fd72
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
13 changes: 11 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Full Documentation:
Usage
-----

*Note: still in process of writing this down*

Get ``django-la-facebook`` into your python path::

Expand All @@ -37,4 +36,14 @@ Add ``la_facebook`` to your root urlconf (urls.py)::
...,
)

TODO: add in the template wiring instructions
Add settings just as:

FACEBOOK_ACCESS_SETTINGS = {
"FACEBOOK_APP_ID": FACEBOOK_APP_ID,
"FACEBOOK_APP_SECRET": FACEBOOK_APP_SECRET,
# The following keys are optional
# "CALLBACK": "la_facebook.callbacks.default.default_facebook_callback",
# "PROVIDER_SCOPE": "email,read_stream",
# "LOG_LEVEL": "DEBUG",
# "LOG_FILE": "/tmp/la_facebook.log",
}
2 changes: 1 addition & 1 deletion la_facebook/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__=(0,0,1)
__VERSION__=(0,1,0)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = "django-la-facebook",
version = "0.1.beta",
version = "0.1.0",
author = "pydanny",
author_email = "pydanny@pydanny.com",
description = "Definitive facebook auth for Django",
Expand All @@ -15,12 +15,12 @@
"la_facebook.utils",
],
classifiers = [
"Development Status :: 3 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)
)

0 comments on commit 1f2fd72

Please sign in to comment.