From 67402a674220b8639a04dc0c0b2f87fd301a817f Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Mon, 20 Feb 2012 12:57:47 -0500 Subject: Remove *.txt and doc from setup.py until I can figure out how to include them in the tarball without installing them. --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'setup.py') 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", -- cgit v1.2.3 From 8f6446b1e45ad69ecd255cac3d9b9939127c91c2 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Mon, 20 Feb 2012 13:04:30 -0500 Subject: Use MANIFEST.in instead of setup.py to hold the docs and text files. --- setup.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 49b82fb..46d5ff2 100644 --- a/setup.py +++ b/setup.py @@ -15,12 +15,6 @@ 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'])], cmdclass = {'build_py':build_py}, classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Developers", -- cgit v1.2.3 From 60cb51632dce022d1a4aff18500d286e58e0bd5c Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Mon, 20 Feb 2012 14:05:38 -0500 Subject: It's now possible to copy a BeautifulSoup object created with the html.parser treebuilder. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 46d5ff2..0d5b7d7 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ except ImportError: from distutils.command.build_py import build_py setup(name="beautifulsoup4", - version = "4.0.0b6", + version = "4.0.0b7", author="Leonard Richardson", author_email='leonardr@segfault.org', url="http://www.crummy.com/software/BeautifulSoup/bs4/", -- cgit v1.2.3