-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.43 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.43 KB
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
#! /usr/bin/env python
from setuptools import find_packages
from distutils.core import setup
import sys
try:
reload(sys).setdefaultencoding('Utf-8')
except NameError: # fix for python >= 3.4.x
from importlib import reload
reload(sys)
setup(
name='django-social-feeds-parser',
version='0.5',
packages=find_packages(),
include_package_data=True,
license='BSD License',
description='A simple Django app to store and display what social media talk about site',
long_description=open('README.rst').read(),
url='https://github.com/RevSquare/django-social-feeds-parser',
author='Tomasz Roszko, Guillaume Pousseo',
author_email='tomaszroszko@revsquare.com, guillaumepousseo@revsquare.com',
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'facebook-sdk==1.0.0',
'python-instagram==0.8.0.',
'tweepy==3.3.0'
],
dependency_links=[
'https://github.com/ozgur/python-linkedin.git@master#egg=python-linkedin',
],
)