From 23ec4e144b4d737e8fb8712e35532bb9f5e67cbf Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Wed, 8 Feb 2012 09:21:39 -0500 Subject: Moved around a bunch of metadata. --- setup.py | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7fce6b0..4eebcb8 100644 --- a/setup.py +++ b/setup.py @@ -7,16 +7,21 @@ except ImportError: from distutils.command.build_py import build_py setup(name="beautifulsoup4", - version = "4.0.0b4", - author="Leonard Richardson", - author_email='leonardr@segfault.org', - url="http://www.crummy.com/software/BeautifulSoup/bs4/", - download_url = "http://www.crummy.com/software/BeautifulSoup/bs4/download/", - 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}, + version = "4.0.0b4", + author="Leonard Richardson", + author_email='leonardr@segfault.org', + url="http://www.crummy.com/software/BeautifulSoup/bs4/", + download_url = "http://www.crummy.com/software/BeautifulSoup/bs4/download/", + 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", "License :: OSI Approved :: MIT License", -- cgit v1.2.3