forked from scrapinghub/portia2code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from portia2code import __version__ as version
install_requires = [
'Scrapy',
'slybot>=0.13.0',
'dateparser',
'six==1.10.0',
'w3lib',
'scrapely',
'autoflake==0.6.6',
'autopep8==1.2.2'
]
setup(
name='portia2code',
version=version,
license='BSD',
description='Convert portia spider definitions to python scrapy spiders',
author='Scrapinghub',
author_email='[email protected]',
maintainer='Ruairi Fahy',
maintainer_email='[email protected]',
packages=find_packages(exclude=('tests', 'tests.*')),
platforms=['Any'],
scripts=['bin/portia_porter'],
install_requires=install_requires,
url='https://github.com/scrapinghub/portia2code',
download_url = 'https://github.com/scrapinghub/portia2code/tarball/portia2code-{}'.format(version),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
]
)