Skip to content

Commit

Permalink
Merge pull request #3 from eventbrite/make-facebook-package
Browse files Browse the repository at this point in the history
Make facebook package
  • Loading branch information
tophevb committed Jun 30, 2015
2 parents 7aeaa95 + 6b43c4c commit b86cd37
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.pyc
build/
*.egg-info/
1 change: 1 addition & 0 deletions facebook/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from facebook import *
File renamed without changes.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,24 @@
except ImportError:
from distutils.core import setup

long_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.'
)

setup(
name='facebook-python-sdk',
version='0.1.1',
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.',
description='Eventbrite Fork of Facebook Python SDK',
long_description=long_description,
author='Facebook',
url='http://github.com/eventbrite/facebook-python-sdk',
package_dir={'': 'src'},
package_dir={'facebook': 'facebook'},
install_requires=[
'requests>=2.4',
],
py_modules=[
packages=[
'facebook',
],
)

0 comments on commit b86cd37

Please sign in to comment.