-
Notifications
You must be signed in to change notification settings - Fork 311
/
setup.py
56 lines (54 loc) · 1.8 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
56
from setuptools import setup
import os
setup(
name='django-dynamic-scraper',
version='0.13.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.11,<1.12',
# 'Scrapy>=1.5,<1.6',
# 'scrapy-djangoitem>=1.1.1,<1.2',
# 'scrapy-splash>=0.7,<0.8', # Optional
# 'scrapyd>=1.2,<1.3',
'jsonpath-rw>=1.4',
# 'kombu>=3.0.37,<3.1',
# 'Celery==3.1.25',
# 'django-celery==3.2.1', # Scheduling
'future>=0.17,<0.18',
'pillow>=6.2.1,<7.0',
'attrs>=17.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',
],
)