summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-02-20 12:57:47 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2012-02-20 12:57:47 -0500
commit67402a674220b8639a04dc0c0b2f87fd301a817f (patch)
tree27b51d1e046ecbe1e608f4e5c65af95282e42570 /setup.py
parent614baaff5871c95afcfbfee431b0ef0b23123721 (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.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index d033def..49b82fb 100644
--- a/setup.py
+++ b/setup.py
@@ -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",