Skip to content

Commit b772f25

Browse files
authored
Fix syntax error in setup.py (#83)
1 parent c0e5a4f commit b772f25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='pyseoanalyzer',
13-
version='4.0.5',
13+
version='4.0.6',
1414
description='An SEO tool that analyzes the structure of a site, crawls the site, count words in the body of the site and warns of any technical SEO issues.',
1515
author='Seth Black',
1616
author_email='sblack@sethserver.com',
@@ -20,7 +20,7 @@
2020
package_data={'seoanalyzer': ['templates/index.html',]},
2121
include_package_data=True,
2222
install_requires=[
23-
'BeautifulSoup4', 'requests', 'jinja2', 'urllib3', 'certifi',
23+
'BeautifulSoup4', 'lxml', 'requests', 'jinja2', 'urllib3', 'certifi',
2424
],
2525
entry_points={
2626
'console_scripts' : [

0 commit comments

Comments
 (0)