forked from holgerd77/django-dynamic-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.01 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
from setuptools import setup
import os
setup(
name='django-dynamic-scraper',
version='0.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(),
packages=[
'dynamic_scraper',
'dynamic_scraper.spiders',
'dynamic_scraper.utils',
],
#install_requires=[
#'Django>=1.2',
#'Scrapy>=0.14',
# Scheduling
#'django-kombu',
#'django-celery',
#],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)