diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-07 23:40:06 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-07 23:40:06 -0500 |
commit | 43aeaf51780466e023418f7dfd1f456614c061e2 (patch) | |
tree | 156998a925451e16e9947efa40ad4261a2204042 /setup.py | |
parent | 7cb84c432367c52702920d68ec6c9669e9b6c9db (diff) |
Package the docs with the code.
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'], + package_data={"bs4": ["doc/source/*.jpg", "doc/source/*.rst", "doc/source/*.py", "doc/Makefile"]}, cmdclass = {'build_py':build_py}, classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Developers", |