-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (39 loc) · 1.13 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
41
42
43
"""setup routine for ``django_authenticator``.
Uses setuptools.
"""
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
#NOTE: if you want to develop authenticator
#you might want to install django-debug-toolbar as well
INSTALL_REQUIRES = [
'django-extra-form-fields',
'django-registration',
'import-utils',
'multi-registry',
'South',
'oauth2',
'python-openid',
'python-wordpress-xmlrpc',
]
import django_authenticator
setup(
name = "django-authenticator",
version = django_authenticator.__version__,
description = 'authentication client for django',
packages = find_packages(),
author = 'Evgeny.Fadeev',
author_email = '[email protected]',
license = 'GPLv3',
keywords = 'authentication, oauth, openid',
url = '',
include_package_data = True,
install_requires = INSTALL_REQUIRES,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
],
long_description = """Note: this module is not yet ready for
use in production. Developed for askbot forum - please ask questions
at `http://askbot.org <http://askbot.org>`_.
"""
)