diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-01-28 13:34:40 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-01-28 13:34:40 -0500 |
commit | 58a9d28ced3c133dc945266024e629335af16196 (patch) | |
tree | 33a12e789fc659022d9fca2eb84c6135b81d1c23 /setup.py | |
parent | 692fe5201d5dec15a3598578a6f403e67802de0d (diff) | |
parent | 5d4b8cc6d288a705cf87c2f2c26036b94d825aa9 (diff) |
Removed buildout and made tests work using 'unit2 discover'.
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', - ) |