-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.41 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
41
#! /usr/bin/env python
#! -*- coding: utf-8 *-*-
from setuptools import setup, find_packages
readme = open('README.md', 'r').read()
setup(
name='spidey.py',
version='0.4.5',
url='https://github.com/khilnani/spidey.py',
license='MIT',
author='khilnani',
author_email='nik@khilnani.org',
description='Web spiders are usually disliked by websites, but useful for recursive API/page downloads for offline analysis.',
include_package_data=True,
long_description=readme,
packages=find_packages(),
install_requires=['requests'],
entry_points={
'console_scripts': [
'spidey = spidey.main:main',
]
},
keywords=('web', 'api', 'downloader', 'spider', 'crawler'),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)