forked from mobolic/facebook-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add slightly more complete setup.py, a MANIFEST.in to add the examples directory, and a new version number to celebrate all of the work that has been done in the last 11 months.
- Loading branch information
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ var | |
sdist | ||
develop-eggs | ||
.installed.cfg | ||
MANIFEST | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include readme.md | ||
recursive-include examples *.css *.html *.ico *.py *.sql *.txt *.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
#!/usr/bin/env python | ||
from distutils.core import setup | ||
import os | ||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
|
||
setup( | ||
name='facebook-sdk', | ||
version='0.2.0', | ||
version='0.3.0', | ||
description='This client library is designed to support the Facebook ' | ||
'Graph API and the official Facebook JavaScript SDK, which ' | ||
'is the canonical way to implement Facebook authentication.', | ||
author='Facebook', | ||
url='http://github.com/pythonforfacebook/facebook-sdk', | ||
license='Apache', | ||
py_modules=[ | ||
'facebook', | ||
], | ||
long_description=read("readme.md"), | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
], | ||
) |