-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import codecs
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with codecs.open(
os.path.join(os.path.dirname(__file__), 'facebook', 'version.txt'),
mode='rb',
encoding='utf8',
) as _version_file:
__version__ = _version_file.read().strip()
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=__version__,
description='Eventbrite Fork of Facebook Python SDK',
long_description=long_description,
author='Facebook',
url='http://github.com/eventbrite/facebook-python-sdk',
package_dir={'facebook': 'facebook'},
install_requires=[
'requests>=2.4',
'six >=1.16',
],
packages=[
'facebook',
],
)