diff options
author | Leonard Richardson <leonardr@segfault.org> | 2015-07-03 11:18:38 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2015-07-03 11:18:38 -0400 |
commit | 245f6ee499c78bbc45c6bbeb225898392654f676 (patch) | |
tree | 7cf182a8ee22e02f6830acc92ba94d55f52c2d35 /setup.py | |
parent | 5881585f01efc14e1736f3056366d290a1498635 (diff) |
Turns out setup.py requiring lxml was never in a released version which is a big relief as we don't need that anymore.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,10 +10,10 @@ setup( author_email='leonardr@segfault.org', url="http://www.crummy.com/software/BeautifulSoup/bs4/", download_url = "http://www.crummy.com/software/BeautifulSoup/bs4/download/", + description="Screen-scraping library", long_description="""Beautiful Soup sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and modifying the parse tree.""", license="MIT", packages=find_packages(exclude=['tests*']), - install_requires = ['lxml'], extras_require = { 'lxml' : [ 'lxml'], 'html5lib' : ['html5lib'], |