-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (33 loc) · 994 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
24
25
26
27
28
29
30
31
32
33
34
from distutils.core import setup
setup(
name='django-social_publisher',
version='0.5.0',
packages=[
'social_publisher',
'social_publisher.migrations',
'social_publisher.templatetags',
'social_publisher.provider',
'social_publisher.provider.twitter',
'social_publisher.provider.facebook',
'social_publisher.provider.google',
'social_publisher.provider.youtube',
'social_publisher.provider.linkedin'
],
install_requires=[
'django>=1.6.1',
'django-allauth>=0.16.1',
'twython>=3.2.0',
'facebook-sdk>=1.0.0-alpha.1',
'httplib2>=0.8',
'oauth2client>=1.3',
'uritemplate>=0.6',
'google-api-python-client>=1.3.1',
'python-linkedin>=4.1',
'South>=0.8.4'
],
url='#',
license='#',
author='ernesto',
description='Application for posting in multiples social networks'
)