-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
27 lines (26 loc) · 853 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
from setuptools import setup
setup(
name='scrapy-beautifulsoup',
version='0.0.2',
description='Simple Scrapy middleware to process non-well-formed HTML with BeautifulSoup',
long_description=open('README.rst').read(),
keywords='scrapy beautifulsoup html html-parsing web-scraping',
license='New BSD License',
author="Alexander Afanasyev",
author_email='afanasieffav@gmail.com',
url='https://github.com/alecxe/scrapy-beautifulsoup',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'scrapy_beautifulsoup',
],
install_requires=[
'beautifulsoup4'
],
)