-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
22 lines (21 loc) · 830 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
#!usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name='social-scraper',
author='Piotr Pawlaczek',
author_email='[email protected]',
version='0.1',
packages=find_packages('.'),
url='https://github.com/piotrpawlaczek/social_scraper',
description='scalable social scraper',
long_description='A scalable backend for a web scraper '
'initialy makde to retrieve structured content '
'from social media like facebook, twitter, linkedin etc',
install_requires=['scrapy', 'celery', # backend + message queue
'flask-restful', # waf
'facebook-sdk', 'Twython'], # api clients
scripts = ['bin/start_scraper'],
)