diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-08 09:21:39 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-08 09:21:39 -0500 |
commit | 23ec4e144b4d737e8fb8712e35532bb9f5e67cbf (patch) | |
tree | 2a42f41e14eda4b9acac56052a647de8a07fbcfc /setup.py | |
parent | 428752ad43d7e9925f8e8b1ff884a41efb451a93 (diff) |
Moved around a bunch of metadata.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 25 |
1 files changed, 15 insertions, 10 deletions
@@ -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", |