-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.17 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
"""
Django Social Auth - Appsfuel
===========================
A [django-social-auth](https://github.com/omab/django-social-auth/) module that
authenticates against [Appsfuel](http://appsfuel.com/).
"""
from setuptools import setup, find_packages
# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
# setup.py test` (see
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
for m in ('multiprocessing', 'billiard'):
try:
__import__(m)
except ImportError:
pass
setup(
name='django-social-auth-appsfuel',
version='1.0.0',
author='Andrea de Marco',
author_email='[email protected]',
url='https://github.com/AppsFuel/django-social-auth-appsfuel',
description='Appsfuel backend for django-social-auth',
long_description=__doc__,
license='BSD',
packages=find_packages(exclude=['tests']),
install_requires=[
'django-social-auth',
],
include_package_data=True,
tests_require=[
'django-nose',
'coverage',
'httpretty',
],
test_suite='testrunner.run',
)