forked from uswaretech/Django-Socialauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 877 Bytes
/
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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "django-socialauth",
version = "0.1.2c",
packages = ['socialauth',
'socialauth/lib',
'socialauth/templatetags',
'openid_consumer'],
package_data = { 'socialauth': [ 'templates/*.html',
'templates/socialauth/*.html',
'templates/socialauth/*.htm',
'templates/openid/*.html'],
'openid_consumer': ['locale/*/LC_MESSAGES/*.po']
},
zip_safe = False,
author = "Usware Technologies",
author_email = "[email protected]",
description = "Allows logging via Facebook, Yahoo, Gmail, Twitter and Openid ",
url = "http://socialauth.uswaretech.net/",
)