-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 926 Bytes
/
setup.py
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
long_description = open('README.md').read()
except IOError:
long_description = ""
setup(
name='facebook-python-wrapper',
version='1.0.1',
description="Facebook API python client",
long_description=long_description,
url='https://github.com/rohitkhatri/facebook-python-sdk',
author='Rohit Khatri',
author_email='[email protected]',
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.5',
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords="facebook api python sdk",
packages=['facebook'],
install_requires=["requests"],
)