diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-01-28 11:39:36 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-01-28 11:39:36 -0500 |
commit | 7bbefa1fcc9a6006953eb0a79049ece9f05985de (patch) | |
tree | 8fa1d24a0f6411b7455e76fd87b659049690077f /setup.py | |
parent | 692fe5201d5dec15a3598578a6f403e67802de0d (diff) |
Moved everything into the top-level directory and got rid of buildout.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/setup.py b/setup.py deleted file mode 100644 index bd8619c..0000000 --- a/setup.py +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env python - -import ez_setup -ez_setup.use_setuptools() - -import sys -from setuptools import setup, find_packages - -sys.path.insert(0, 'src') -from beautifulsoup import __version__ - -setup( - name='beautifulsoup', - version=__version__, - packages=find_packages('src'), - package_dir={'':'src'}, - include_package_data=True, - zip_safe=False, - maintainer='Leonard Richardson', - maintainer_email='leonardr@segfault.org', - long_description="""Beautiful Soup parses arbitrarily invalid XML/HTML and provides a variety of methods and Pythonic idioms for iterating and searching the parse tree.""", - license='New-style BSD', - install_requires=[ - 'setuptools', - 'zope.interface', - ], - url='https://launchpad.net/beautifulsoup', - download_url= 'https://launchpad.net/beautifulsoup/+download', - classifiers=["Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "License :: OSI Approved :: Python Software Foundation License", - "Programming Language :: Python", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: XML", - "Topic :: Text Processing :: Markup :: SGML", - "Topic :: Software Development :: Libraries :: Python Modules", - ], - extras_require=dict( - docs=['Sphinx', - 'z3c.recipe.sphinxdoc'] - ), - setup_requires=['eggtestinfo', 'setuptools_bzr'], - test_suite='beautifulsoup.tests', - ) |