-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.17 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
from distutils.core import setup
import os
setup(
name='django-dynamic-scraper',
version='0.3.1',
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.spiders',
'dynamic_scraper.utils',
'dynamic_scraper.migrations',
],
#install_requires=[
# 'Django>=1.3.1',
# 'Scrapy>=0.14.0,<0.16.0',
#
# 'celery>=2.5.0,<3.0', # Scheduling
# 'django-celery>=2.5.0,<3.0',
# 'PIL',
# 'South',
#],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)