diff options
author | Leonard Richardson <leonardr@segfault.org> | 2014-12-07 09:31:30 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2014-12-07 09:31:30 -0500 |
commit | bf58c02abf418556927363cf79cc86bee58d0592 (patch) | |
tree | 747e9f5a6d6aa7fcce064ad44c9efb5e43fdca73 /setup.py | |
parent | a7f63d509473e11a48ff3f9b2d8b37a19a7a25ef (diff) |
Issue a warning if the BeautifulSoup constructor arguments do not explicitly name a parser.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ setup(name="beautifulsoup4", 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=['bs4', 'bs4.builder', 'bs4.tests'], + install_requires=["lxml"], cmdclass = {'build_py':build_py}, classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Developers", |