diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-20 12:57:47 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-20 12:57:47 -0500 |
commit | 67402a674220b8639a04dc0c0b2f87fd301a817f (patch) | |
tree | 27b51d1e046ecbe1e608f4e5c65af95282e42570 /setup.py | |
parent | 614baaff5871c95afcfbfee431b0ef0b23123721 (diff) |
Remove *.txt and doc from setup.py until I can figure out how to include them in the tarball without installing them.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -15,12 +15,12 @@ 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"] - }, - data_files=[ - ('', ['COPYING.txt', 'NEWS.txt', 'AUTHORS.txt', 'README.txt'])], +# package_data={ +# "bs4": ["doc/source/*.jpg", "doc/source/*.rst", +# "doc/source/*.py", "doc/Makefile"] +# }, +# data_files=[ +# ('', ['COPYING.txt', 'NEWS.txt', 'AUTHORS.txt', 'README.txt'])], cmdclass = {'build_py':build_py}, classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Developers", |