forked from xrmx/Django-facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (33 loc) · 1.33 KB
/
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
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
import os
from distutils.core import setup
from django_facebook import __version__, __maintainer__, __email__
license_text = open('LICENSE.txt').read()
long_description = open('README.md').read()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
]
DESCRIPTION = """Facebook open graph API auth backend implementation using
the Django web framework and python."""
setup(
name = 'django-facebook',
version = __version__,
url = 'http://github.com/tschellenbach/Django-facebook',
author = __maintainer__,
author_email = __email__,
license = license_text,
packages = ['django_facebook'],
data_files=[('', ['LICENSE.txt',
'README.md'])],
description = DESCRIPTION,
long_description=long_description,
classifiers = CLASSIFIERS,
install_requires = ('python-cjson', 'django-registration', 'python-notify', 'PIL'),
)