-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (33 loc) · 1.1 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='linkGrabber',
version='0.2.7',
author='Eric Bower',
author_email='neurosnap@gmail.com',
packages=['linkGrabber', 'linkGrabber.tests'],
scripts=[],
url='https://github.com/detroit-media-partnership/linkGrabber',
license=read('LICENSE.txt'),
description='Scrape links from a single web page',
long_description=read('README.rst') + '\n\n' + read('CHANGES.rst'),
install_requires=["requests", "beautifulsoup4"],
tests_require=['nosetest', 'vcrpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: MIT License'
],
keywords=['linkgrabber', 'beautifulsoup', 'scraper',
'html', 'parser', 'hyperlinks']
)