-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
39 lines (36 loc) · 1.16 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
from setuptools import find_packages, setup
description = ('A command-line utility 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/wayback-machine-scraper')
setup(
name='wayback-machine-scraper',
version='1.0.7',
author='Evan Sangaline',
description=description,
license='ISC',
keywords='archive.org scrapy scraper waybackmachine',
url="https://github.com/sangaline/wayback-machine-scraper",
packages=find_packages(),
entry_points={
'console_scripts': [
'wayback-machine-scraper = wayback_machine_scraper.__main__:main',
],
},
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Scrapy',
'Topic :: Utilities',
'License :: OSI Approved :: ISC License (ISCL)',
],
install_requires=[
'cryptography',
'scrapy',
'scrapy-wayback-machine',
'twisted',
]
)