diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-02 08:43:52 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-02 08:43:52 -0500 |
commit | 880c5c4fe3668fe505d9c03c8c80f35be997574b (patch) | |
tree | 5a77e7b1795813d6502ad231d5fe9fa7921248a3 /setup.py | |
parent | 3728f4d974784578291cf4cd9edffaf215f73597 (diff) |
Added docs.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -6,11 +6,14 @@ except ImportError: # 2.x from distutils.command.build_py import build_py - -setup(name="BeautifulSoup", - version="4.0b2", +setup(name="BeautifulSoup4", + version="4.0b3", author="Leonard Richardson", url="http://www.crummy.com/software/BeautifulSoup/", packages=['bs4', 'bs4.builder', 'bs4.tests'], - cmdclass = {'build_py':build_py} + cmdclass = {'build_py':build_py}, + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + ], ) |