forked from holgerd77/django-dynamic-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (53 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
import os
setup(
name='django-dynamic-scraper',
version='0.11.3',
description='Creating Scrapy scrapers via the Django admin interface',
author='Holger Drewes',
author_email='[email protected]',
url='https://github.com/holgerd77/django-dynamic-scraper/',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
license='BSD License',
platforms=['OS Independent'],
packages=[
'dynamic_scraper',
'dynamic_scraper.management',
'dynamic_scraper.management.commands',
'dynamic_scraper.migrations',
'dynamic_scraper.south_migrations',
'dynamic_scraper.spiders',
'dynamic_scraper.utils',
],
package_data = {
'dynamic_scraper': [
'static/js/*',
],
},
install_requires=[
# Django, Scrapy and Celery requirements are commented out here and have
# to be installed manually to avoid side-effects when updating the software.
# Version numbers are updated accordingly though.
# 'Django>=1.8,<1.10',
# 'Scrapy>=1.1,<1.2',
# 'scrapy-djangoitem>=1.1.1,<1.2',
# 'scrapy-splash>=0.6.1,<0.7', # Optional
# 'scrapyd>=1.1,<1.2',
'jsonpath-rw>=1.4',
# 'kombu>=3.0.33,<3.1',
# 'Celery==3.1.20',
# 'django-celery==3.1.17', # Scheduling
'future>=0.15,<0.16',
'pillow>=3.0,<4.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)