-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 703 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 703 Bytes
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
from setuptools import setup
installation_requirements = [
'requests',
'requests-toolbelt',
'six'
]
try:
import enum
del enum
except ImportError:
installation_requirements.append('enum')
setup(
name='pymessenger',
packages=['pymessenger'],
version='1.0.0',
install_requires=installation_requirements,
description="Python Wrapper for Facebook Messenger Platform",
author='David Chua',
author_email='zhchua@gmail.com',
url='https://github.com/davidchua/pymessenger',
download_url='https://github.com/davidchua/pymessenger/tarball/1.0.0',
keywords=['facebook messenger', 'python', 'wrapper', 'bot', 'messenger bot'],
classifiers=[],
)