forked from scrapy/slybot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 924 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 924 Bytes
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
from slybot import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install_requires = ['Scrapy', 'scrapely', 'loginform', 'lxml']
tests_requires = ['jsonschema'] + install_requires
setup(name='slybot',
version=__version__,
license='BSD',
description='Slybot crawler',
author='Scrapy project',
author_email='[email protected]',
url='http://github.com/scrapy/slybot',
packages=['slybot', 'slybot.fieldtypes', 'slybot.tests', 'slybot.linkextractor'],
platforms = ['Any'],
scripts = ['bin/slybot'],
install_requires = install_requires,
tests_requires = tests_requires,
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python']
)