-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 781 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 781 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
28
29
30
#!/usr/bin/env python
from distutils.core import setup
description = "A Facebook Python client."
VERSION = 'pre-0.1'
setup(
name='python-facebook',
version=VERSION,
author='Glenn Siegman',
author_email='gsiegman@gsiegman.com',
url='https://github.com/gsiegman/python-facebook',
description=description,
long_description=description,
license='BSD',
platforms=['any',],
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=['facebook',],
install_requires=['requests', 'bunch',]
)