Skip to content

Commit b86cd37

Browse files
committed
Merge pull request #3 from eventbrite/make-facebook-package
Make facebook package
2 parents 7aeaa95 + 6b43c4c commit b86cd37

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.pyc
2+
build/
3+
*.egg-info/

facebook/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from facebook import *
File renamed without changes.

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,24 @@
55
except ImportError:
66
from distutils.core import setup
77

8+
long_description = (
9+
'This client library is designed to support the Facebook Graph API and the '
10+
'official Facebook JavaScript SDK, which is the canonical way to implement '
11+
'Facebook authentication.'
12+
)
813

914
setup(
1015
name='facebook-python-sdk',
1116
version='0.1.1',
12-
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.',
17+
description='Eventbrite Fork of Facebook Python SDK',
18+
long_description=long_description,
1319
author='Facebook',
1420
url='http://github.com/eventbrite/facebook-python-sdk',
15-
package_dir={'': 'src'},
21+
package_dir={'facebook': 'facebook'},
1622
install_requires=[
1723
'requests>=2.4',
1824
],
19-
py_modules=[
25+
packages=[
2026
'facebook',
2127
],
2228
)

0 commit comments

Comments
 (0)