-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
33 lines (30 loc) · 1014 Bytes
/
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
from setuptools import find_packages, setup
description = ('A Scrapy middleware for scraping '
'Wayback Machine snapshots from archive.org.')
long_description = description + \
(' For further details, '
'please see the code repository on github: '
'https://github.com/sangaline/scrapy-wayback-machine')
setup(
name='scrapy-wayback-machine',
version='1.0.3',
author='Evan Sangaline',
author_email='evan@intoli.com',
description=description,
license='ISC',
keywords='archive.org scrapy scraper waybackmachine middleware',
url="https://github.com/sangaline/scrapy-wayback-machine",
packages=find_packages(),
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Scrapy',
'Topic :: Utilities',
'License :: OSI Approved :: ISC License (ISCL)',
],
install_requires=[
'cryptography',
'scrapy',
'twisted',
]
)